Merge "Don't check namespace in SpecialWantedtemplates"
[lhc/web/wiklou.git] / includes / mail / UserMailer.php
1 <?php
2 /**
3 * Classes used to send e-mails
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @author <brion@pobox.com>
22 * @author <mail@tgries.de>
23 * @author Tim Starling
24 * @author Luke Welling lwelling@wikimedia.org
25 */
26
27 /**
28 * Collection of static functions for sending mail
29 */
30 class UserMailer {
31 private static $mErrorString;
32
33 /**
34 * Send mail using a PEAR mailer
35 *
36 * @param UserMailer $mailer
37 * @param string $dest
38 * @param string $headers
39 * @param string $body
40 *
41 * @return Status
42 */
43 protected static function sendWithPear( $mailer, $dest, $headers, $body ) {
44 $mailResult = $mailer->send( $dest, $headers, $body );
45
46 // Based on the result return an error string,
47 if ( PEAR::isError( $mailResult ) ) {
48 wfDebug( "PEAR::Mail failed: " . $mailResult->getMessage() . "\n" );
49 return Status::newFatal( 'pear-mail-error', $mailResult->getMessage() );
50 } else {
51 return Status::newGood();
52 }
53 }
54
55 /**
56 * Creates a single string from an associative array
57 *
58 * @param array $headers Associative Array: keys are header field names,
59 * values are ... values.
60 * @param string $endl The end of line character. Defaults to "\n"
61 *
62 * Note RFC2822 says newlines must be CRLF (\r\n)
63 * but php mail naively "corrects" it and requires \n for the "correction" to work
64 *
65 * @return string
66 */
67 static function arrayToHeaderString( $headers, $endl = "\n" ) {
68 $strings = array();
69 foreach ( $headers as $name => $value ) {
70 // Prevent header injection by stripping newlines from value
71 $value = self::sanitizeHeaderValue( $value );
72 $strings[] = "$name: $value";
73 }
74 return implode( $endl, $strings );
75 }
76
77 /**
78 * Create a value suitable for the MessageId Header
79 *
80 * @return string
81 */
82 static function makeMsgId() {
83 global $wgSMTP, $wgServer;
84
85 $msgid = uniqid( wfWikiID() . ".", true ); /* true required for cygwin */
86 if ( is_array( $wgSMTP ) && isset( $wgSMTP['IDHost'] ) && $wgSMTP['IDHost'] ) {
87 $domain = $wgSMTP['IDHost'];
88 } else {
89 $url = wfParseUrl( $wgServer );
90 $domain = $url['host'];
91 }
92 return "<$msgid@$domain>";
93 }
94
95 /**
96 * This function will perform a direct (authenticated) login to
97 * a SMTP Server to use for mail relaying if 'wgSMTP' specifies an
98 * array of parameters. It requires PEAR:Mail to do that.
99 * Otherwise it just uses the standard PHP 'mail' function.
100 *
101 * @param MailAddress|MailAddress[] $to Recipient's email (or an array of them)
102 * @param MailAddress $from Sender's email
103 * @param string $subject Email's subject.
104 * @param string $body Email's text or Array of two strings to be the text and html bodies
105 * @param array $options:
106 * 'replyTo' MailAddress
107 * 'contentType' string default 'text/plain; charset=UTF-8'
108 * 'headers' array Extra headers to set
109 *
110 * Previous versions of this function had $replyto as the 5th argument and $contentType
111 * as the 6th. These are still supported for backwards compatability, but deprecated.
112 *
113 * @throws MWException
114 * @throws Exception
115 * @return Status
116 */
117 public static function send( $to, $from, $subject, $body, $options = array() ) {
118 global $wgSMTP, $wgEnotifMaxRecips, $wgAdditionalMailParams, $wgAllowHTMLEmail;
119 $contentType = 'text/plain; charset=UTF-8';
120 $headers = array();
121 if ( is_array( $options ) ) {
122 $replyto = isset( $options['replyTo'] ) ? $options['replyTo'] : null;
123 $contentType = isset( $options['contentType'] ) ? $options['contentType'] : $contentType;
124 $headers = isset( $options['headers'] ) ? $options['headers'] : $headers;
125 } else {
126 // Old calling style
127 wfDeprecated( __METHOD__ . ' with $replyto as 5th parameter', '1.26' );
128 $replyto = $options;
129 if ( func_num_args() === 6 ) {
130 $contentType = func_get_arg( 5 );
131 }
132 }
133
134 $mime = null;
135 if ( !is_array( $to ) ) {
136 $to = array( $to );
137 }
138
139 // mail body must have some content
140 $minBodyLen = 10;
141 // arbitrary but longer than Array or Object to detect casting error
142
143 // body must either be a string or an array with text and body
144 if (
145 !(
146 !is_array( $body ) &&
147 strlen( $body ) >= $minBodyLen
148 )
149 &&
150 !(
151 is_array( $body ) &&
152 isset( $body['text'] ) &&
153 isset( $body['html'] ) &&
154 strlen( $body['text'] ) >= $minBodyLen &&
155 strlen( $body['html'] ) >= $minBodyLen
156 )
157 ) {
158 // if it is neither we have a problem
159 return Status::newFatal( 'user-mail-no-body' );
160 }
161
162 if ( !$wgAllowHTMLEmail && is_array( $body ) ) {
163 // HTML not wanted. Dump it.
164 $body = $body['text'];
165 }
166
167 wfDebug( __METHOD__ . ': sending mail to ' . implode( ', ', $to ) . "\n" );
168
169 // Make sure we have at least one address
170 $has_address = false;
171 foreach ( $to as $u ) {
172 if ( $u->address ) {
173 $has_address = true;
174 break;
175 }
176 }
177 if ( !$has_address ) {
178 return Status::newFatal( 'user-mail-no-addy' );
179 }
180
181 // Forge email headers
182 // -------------------
183 //
184 // WARNING
185 //
186 // DO NOT add To: or Subject: headers at this step. They need to be
187 // handled differently depending upon the mailer we are going to use.
188 //
189 // To:
190 // PHP mail() first argument is the mail receiver. The argument is
191 // used as a recipient destination and as a To header.
192 //
193 // PEAR mailer has a recipient argument which is only used to
194 // send the mail. If no To header is given, PEAR will set it to
195 // to 'undisclosed-recipients:'.
196 //
197 // NOTE: To: is for presentation, the actual recipient is specified
198 // by the mailer using the Rcpt-To: header.
199 //
200 // Subject:
201 // PHP mail() second argument to pass the subject, passing a Subject
202 // as an additional header will result in a duplicate header.
203 //
204 // PEAR mailer should be passed a Subject header.
205 //
206 // -- hashar 20120218
207
208 $headers['From'] = $from->toString();
209 $returnPath = $from->address;
210 $extraParams = $wgAdditionalMailParams;
211
212 // Hook to generate custom VERP address for 'Return-Path'
213 Hooks::run( 'UserMailerChangeReturnPath', array( $to, &$returnPath ) );
214 // Add the envelope sender address using the -f command line option when PHP mail() is used.
215 // Will default to the $from->address when the UserMailerChangeReturnPath hook fails and the
216 // generated VERP address when the hook runs effectively.
217 $extraParams .= ' -f ' . $returnPath;
218
219 $headers['Return-Path'] = $returnPath;
220
221 if ( $replyto ) {
222 $headers['Reply-To'] = $replyto->toString();
223 }
224
225 $headers['Date'] = MWTimestamp::getLocalInstance()->format( 'r' );
226 $headers['Message-ID'] = self::makeMsgId();
227 $headers['X-Mailer'] = 'MediaWiki mailer';
228 $headers['List-Unsubscribe'] = '<' . SpecialPage::getTitleFor( 'Preferences' )
229 ->getFullURL( '', false, PROTO_CANONICAL ) . '>';
230
231 // Line endings need to be different on Unix and Windows due to
232 // the bug described at http://trac.wordpress.org/ticket/2603
233 if ( wfIsWindows() ) {
234 $endl = "\r\n";
235 } else {
236 $endl = "\n";
237 }
238
239 if ( is_array( $body ) ) {
240 // we are sending a multipart message
241 wfDebug( "Assembling multipart mime email\n" );
242 if ( !stream_resolve_include_path( 'Mail/mime.php' ) ) {
243 wfDebug( "PEAR Mail_Mime package is not installed. Falling back to text email.\n" );
244 // remove the html body for text email fall back
245 $body = $body['text'];
246 } else {
247 // Check if pear/mail_mime is already loaded (via composer)
248 if ( !class_exists( 'Mail_mime' ) ) {
249 require_once 'Mail/mime.php';
250 }
251 if ( wfIsWindows() ) {
252 $body['text'] = str_replace( "\n", "\r\n", $body['text'] );
253 $body['html'] = str_replace( "\n", "\r\n", $body['html'] );
254 }
255 $mime = new Mail_mime( array(
256 'eol' => $endl,
257 'text_charset' => 'UTF-8',
258 'html_charset' => 'UTF-8'
259 ) );
260 $mime->setTXTBody( $body['text'] );
261 $mime->setHTMLBody( $body['html'] );
262 $body = $mime->get(); // must call get() before headers()
263 $headers = $mime->headers( $headers );
264 }
265 }
266 if ( $mime === null ) {
267 // sending text only, either deliberately or as a fallback
268 if ( wfIsWindows() ) {
269 $body = str_replace( "\n", "\r\n", $body );
270 }
271 $headers['MIME-Version'] = '1.0';
272 $headers['Content-type'] = ( is_null( $contentType ) ?
273 'text/plain; charset=UTF-8' : $contentType );
274 $headers['Content-transfer-encoding'] = '8bit';
275 }
276
277 $ret = Hooks::run( 'AlternateUserMailer', array( $headers, $to, $from, $subject, $body ) );
278 if ( $ret === false ) {
279 // the hook implementation will return false to skip regular mail sending
280 return Status::newGood();
281 } elseif ( $ret !== true ) {
282 // the hook implementation will return a string to pass an error message
283 return Status::newFatal( 'php-mail-error', $ret );
284 }
285
286 if ( is_array( $wgSMTP ) ) {
287 // Check if pear/mail is already loaded (via composer)
288 if ( !class_exists( 'Mail' ) ) {
289 // PEAR MAILER
290 if ( !stream_resolve_include_path( 'Mail.php' ) ) {
291 throw new MWException( 'PEAR mail package is not installed' );
292 }
293 require_once 'Mail.php';
294 }
295
296 MediaWiki\suppressWarnings();
297
298 // Create the mail object using the Mail::factory method
299 $mail_object =& Mail::factory( 'smtp', $wgSMTP );
300 if ( PEAR::isError( $mail_object ) ) {
301 wfDebug( "PEAR::Mail factory failed: " . $mail_object->getMessage() . "\n" );
302 MediaWiki\restoreWarnings();
303 return Status::newFatal( 'pear-mail-error', $mail_object->getMessage() );
304 }
305
306 wfDebug( "Sending mail via PEAR::Mail\n" );
307
308 $headers['Subject'] = self::quotedPrintable( $subject );
309
310 // When sending only to one recipient, shows it its email using To:
311 if ( count( $to ) == 1 ) {
312 $headers['To'] = $to[0]->toString();
313 }
314
315 // Split jobs since SMTP servers tends to limit the maximum
316 // number of possible recipients.
317 $chunks = array_chunk( $to, $wgEnotifMaxRecips );
318 foreach ( $chunks as $chunk ) {
319 $status = self::sendWithPear( $mail_object, $chunk, $headers, $body );
320 // FIXME : some chunks might be sent while others are not!
321 if ( !$status->isOK() ) {
322 MediaWiki\restoreWarnings();
323 return $status;
324 }
325 }
326 MediaWiki\restoreWarnings();
327 return Status::newGood();
328 } else {
329 //
330 // PHP mail()
331 //
332 if ( count( $to ) > 1 ) {
333 $headers['To'] = 'undisclosed-recipients:;';
334 }
335 $headers = self::arrayToHeaderString( $headers, $endl );
336
337 wfDebug( "Sending mail via internal mail() function\n" );
338
339 self::$mErrorString = '';
340 $html_errors = ini_get( 'html_errors' );
341 ini_set( 'html_errors', '0' );
342 set_error_handler( 'UserMailer::errorHandler' );
343
344 try {
345 $safeMode = wfIniGetBool( 'safe_mode' );
346
347 foreach ( $to as $recip ) {
348 if ( $safeMode ) {
349 $sent = mail( $recip, self::quotedPrintable( $subject ), $body, $headers );
350 } else {
351 $sent = mail(
352 $recip,
353 self::quotedPrintable( $subject ),
354 $body,
355 $headers,
356 $extraParams
357 );
358 }
359 }
360 } catch ( Exception $e ) {
361 restore_error_handler();
362 throw $e;
363 }
364
365 restore_error_handler();
366 ini_set( 'html_errors', $html_errors );
367
368 if ( self::$mErrorString ) {
369 wfDebug( "Error sending mail: " . self::$mErrorString . "\n" );
370 return Status::newFatal( 'php-mail-error', self::$mErrorString );
371 } elseif ( !$sent ) {
372 // mail function only tells if there's an error
373 wfDebug( "Unknown error sending mail\n" );
374 return Status::newFatal( 'php-mail-error-unknown' );
375 } else {
376 return Status::newGood();
377 }
378 }
379 }
380
381 /**
382 * Set the mail error message in self::$mErrorString
383 *
384 * @param int $code Error number
385 * @param string $string Error message
386 */
387 static function errorHandler( $code, $string ) {
388 self::$mErrorString = preg_replace( '/^mail\(\)(\s*\[.*?\])?: /', '', $string );
389 }
390
391 /**
392 * Strips bad characters from a header value to prevent PHP mail header injection attacks
393 * @param string $val String to be santizied
394 * @return string
395 */
396 public static function sanitizeHeaderValue( $val ) {
397 return strtr( $val, array( "\r" => '', "\n" => '' ) );
398 }
399
400 /**
401 * Converts a string into a valid RFC 822 "phrase", such as is used for the sender name
402 * @param string $phrase
403 * @return string
404 */
405 public static function rfc822Phrase( $phrase ) {
406 // Remove line breaks
407 $phrase = self::sanitizeHeaderValue( $phrase );
408 // Remove quotes
409 $phrase = str_replace( '"', '', $phrase );
410 return '"' . $phrase . '"';
411 }
412
413 /**
414 * Converts a string into quoted-printable format
415 * @since 1.17
416 *
417 * From PHP5.3 there is a built in function quoted_printable_encode()
418 * This method does not duplicate that.
419 * This method is doing Q encoding inside encoded-words as defined by RFC 2047
420 * This is for email headers.
421 * The built in quoted_printable_encode() is for email bodies
422 * @param string $string
423 * @param string $charset
424 * @return string
425 */
426 public static function quotedPrintable( $string, $charset = '' ) {
427 // Probably incomplete; see RFC 2045
428 if ( empty( $charset ) ) {
429 $charset = 'UTF-8';
430 }
431 $charset = strtoupper( $charset );
432 $charset = str_replace( 'ISO-8859', 'ISO8859', $charset ); // ?
433
434 $illegal = '\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
435 $replace = $illegal . '\t ?_';
436 if ( !preg_match( "/[$illegal]/", $string ) ) {
437 return $string;
438 }
439 $out = "=?$charset?Q?";
440 $out .= preg_replace_callback( "/([$replace])/",
441 array( __CLASS__, 'quotedPrintableCallback' ), $string );
442 $out .= '?=';
443 return $out;
444 }
445
446 protected static function quotedPrintableCallback( $matches ) {
447 return sprintf( "=%02X", ord( $matches[1] ) );
448 }
449 }