Index: trunk/phase3/includes/UserMailer.php |
— | — | @@ -93,8 +93,7 @@ |
94 | 94 | |
95 | 95 | $wgErrorString = ''; |
96 | 96 | set_error_handler( 'mailErrorHandler' ); |
97 | | - # added -f parameter, see PHP manual for the fifth parameter when using the mail function |
98 | | - mail( $to, $subject, $body, $headers, " -f {$wgEmergencyContact}\n"); |
| 97 | + mail( $to, $subject, $body, $headers ); |
99 | 98 | restore_error_handler(); |
100 | 99 | |
101 | 100 | if ( $wgErrorString ) { |
Index: trunk/phase3/RELEASE-NOTES |
— | — | @@ -237,6 +237,7 @@ |
238 | 238 | leaves the whitespace from the section comment there on preview. |
239 | 239 | * (bug 2274) Respect stub threshold in category page list |
240 | 240 | * (bug 2173) Fatal error when removing an article with an empty title from the watchlist |
| 241 | +* Removed -f parameter from mail() usage, likely to cause failures and bounces. |
241 | 242 | |
242 | 243 | |
243 | 244 | === Caveats === |