diff --git a/RELEASE-NOTES b/RELEASE-NOTES
index bf49107b756..394e7ba708b 100644
--- a/RELEASE-NOTES
+++ b/RELEASE-NOTES
@@ -229,8 +229,8 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN
* Patch from LeonWP: added UploadForm:BeforeProcessing hook in SpecialUpload.php
* Add AuthPluginSetup hook to override $wgAuth after configuration
* Fix regression in authentication hook auto-creation on login
-* (bug 8110) Allow spaces in ISBNs.
-
+* (bug 8110) Allow spaces in ISBNs
+* (bug 8024) Introduce "send me copies of emails I send to others" preference
== Languages updated ==
diff --git a/includes/SpecialEmailuser.php b/includes/SpecialEmailuser.php
index 16270b17783..38745a37085 100644
--- a/includes/SpecialEmailuser.php
+++ b/includes/SpecialEmailuser.php
@@ -123,7 +123,7 @@ class EmailUserForm {
-" . wfCheckLabel( $emc, 'wpCCMe', 'wpCCMe' ) . "
+" . wfCheckLabel( $emc, 'wpCCMe', 'wpCCMe', $wgUser->getBoolOption( 'ccmeonemails' ) ) . "
\n" );
diff --git a/includes/SpecialPreferences.php b/includes/SpecialPreferences.php
index 39f2fc57b48..29614a80891 100644
--- a/includes/SpecialPreferences.php
+++ b/includes/SpecialPreferences.php
@@ -486,6 +486,7 @@ class PreferencesForm {
$this->mUsedToggles[ 'enotifusertalkpages' ] = true;
$this->mUsedToggles[ 'enotifminoredits' ] = true;
$this->mUsedToggles[ 'enotifrevealaddr' ] = true;
+ $this->mUsedToggles[ 'ccmeonemails' ] = true;
$this->mUsedToggles[ 'uselivepreview' ] = true;
# Enotif
@@ -688,6 +689,7 @@ class PreferencesForm {
$wgOut->addHTML(
"