43 protected static function sendWithPear( $mailer, $dest, $headers, $body ) {
44 $mailResult = $mailer->send( $dest, $headers, $body );
47 if ( PEAR::isError( $mailResult ) ) {
48 wfDebug(
"PEAR::Mail failed: " . $mailResult->getMessage() .
"\n" );
72 $strings[] =
"$name: $value";
74 return implode( $endl, $strings );
85 $msgid = uniqid(
wfWikiID() .
".",
true );
86 if ( is_array( $wgSMTP ) && isset( $wgSMTP[
'IDHost'] ) && $wgSMTP[
'IDHost'] ) {
87 $domain = $wgSMTP[
'IDHost'];
90 $domain = $url[
'host'];
92 return "<$msgid@$domain>";
117 if ( !isset(
$options[
'contentType'] ) ) {
118 $options[
'contentType'] =
'text/plain; charset=UTF-8';
121 if ( !is_array( $to ) ) {
132 !is_array( $body ) &&
133 strlen( $body ) >= $minBodyLen
138 isset( $body[
'text'] ) &&
139 isset( $body[
'html'] ) &&
140 strlen( $body[
'text'] ) >= $minBodyLen &&
141 strlen( $body[
'html'] ) >= $minBodyLen
148 if ( !$wgAllowHTMLEmail && is_array( $body ) ) {
150 $body = $body[
'text'];
153 wfDebug( __METHOD__ .
': sending mail to ' . implode(
', ', $to ) .
"\n" );
156 $has_address =
false;
157 foreach ( $to
as $u ) {
163 if ( !$has_address ) {
169 if ( count( $to ) > 1 ) {
172 if ( $oldTo != $to ) {
173 $splitTo = array_diff( $oldTo, $to );
174 $to = array_diff( $oldTo, $splitTo );
181 foreach ( $splitTo
as $newTo ) {
219 $contentType = isset(
$options[
'contentType'] ) ?
220 $options[
'contentType'] :
'text/plain; charset=UTF-8';
225 if ( !
Hooks::run(
'UserMailerTransformContent', [ $to, $from, &$body, &$error ] ) ) {
262 $headers[
'From'] = $from->
toString();
263 $returnPath = $from->address;
267 Hooks::run(
'UserMailerChangeReturnPath', [ $to, &$returnPath ] );
271 $extraParams .=
' -f ' . $returnPath;
273 $headers[
'Return-Path'] = $returnPath;
276 $headers[
'Reply-To'] = $replyto->toString();
280 $headers[
'Message-ID'] = self::makeMsgId();
281 $headers[
'X-Mailer'] =
'MediaWiki mailer';
289 if ( is_array( $body ) ) {
291 wfDebug(
"Assembling multipart mime email\n" );
292 if ( !stream_resolve_include_path(
'Mail/mime.php' ) ) {
293 wfDebug(
"PEAR Mail_Mime package is not installed. Falling back to text email.\n" );
295 $body = $body[
'text'];
298 if ( !class_exists(
'Mail_mime' ) ) {
299 require_once
'Mail/mime.php';
302 $body[
'text'] = str_replace(
"\n",
"\r\n", $body[
'text'] );
303 $body[
'html'] = str_replace(
"\n",
"\r\n", $body[
'html'] );
305 $mime =
new Mail_mime( [
307 'text_charset' =>
'UTF-8',
308 'html_charset' =>
'UTF-8'
310 $mime->setTXTBody( $body[
'text'] );
311 $mime->setHTMLBody( $body[
'html'] );
312 $body =
$mime->get();
313 $headers =
$mime->headers( $headers );
316 if (
$mime === null ) {
319 $body = str_replace(
"\n",
"\r\n", $body );
321 $headers[
'MIME-Version'] =
'1.0';
322 $headers[
'Content-type'] = $contentType;
323 $headers[
'Content-transfer-encoding'] =
'8bit';
327 if ( !
Hooks::run(
'UserMailerTransformMessage',
328 [ $to, $from, &$subject, &$headers, &$body, &$error ] )
337 $ret =
Hooks::run(
'AlternateUserMailer', [ $headers, $to, $from, $subject, $body ] );
338 if (
$ret ===
false ) {
341 } elseif (
$ret !==
true ) {
346 if ( is_array( $wgSMTP ) ) {
348 if ( !class_exists(
'Mail' ) ) {
350 if ( !stream_resolve_include_path(
'Mail.php' ) ) {
351 throw new MWException(
'PEAR mail package is not installed' );
353 require_once
'Mail.php';
356 MediaWiki\suppressWarnings();
359 $mail_object =& Mail::factory(
'smtp', $wgSMTP );
360 if ( PEAR::isError( $mail_object ) ) {
361 wfDebug(
"PEAR::Mail factory failed: " . $mail_object->getMessage() .
"\n" );
362 MediaWiki\restoreWarnings();
366 wfDebug(
"Sending mail via PEAR::Mail\n" );
368 $headers[
'Subject'] = self::quotedPrintable( $subject );
371 if ( count( $to ) == 1 ) {
372 $headers[
'To'] = $to[0]->toString();
377 $chunks = array_chunk( $to, $wgEnotifMaxRecips );
378 foreach ( $chunks
as $chunk ) {
379 $status = self::sendWithPear( $mail_object, $chunk, $headers, $body );
382 MediaWiki\restoreWarnings();
386 MediaWiki\restoreWarnings();
390 if ( count( $to ) > 1 ) {
391 $headers[
'To'] =
'undisclosed-recipients:;';
393 $headers = self::arrayToHeaderString( $headers, $endl );
395 wfDebug(
"Sending mail via internal mail() function\n" );
397 self::$mErrorString =
'';
398 $html_errors = ini_get(
'html_errors' );
399 ini_set(
'html_errors',
'0' );
400 set_error_handler(
'UserMailer::errorHandler' );
403 foreach ( $to
as $recip ) {
406 self::quotedPrintable( $subject ),
413 restore_error_handler();
417 restore_error_handler();
418 ini_set(
'html_errors', $html_errors );
420 if ( self::$mErrorString ) {
421 wfDebug(
"Error sending mail: " . self::$mErrorString .
"\n" );
423 } elseif ( !$sent ) {
425 wfDebug(
"Unknown error sending mail\n" );
440 self::$mErrorString = preg_replace(
'/^mail\(\)(\s*\[.*?\])?: /',
'', $string );
449 return strtr( $val, [
"\r" =>
'',
"\n" =>
'' ] );
459 $phrase = self::sanitizeHeaderValue( $phrase );
461 $phrase = str_replace(
'"',
'', $phrase );
462 return '"' . $phrase .
'"';
480 if ( empty( $charset ) ) {
483 $charset = strtoupper( $charset );
484 $charset = str_replace(
'ISO-8859',
'ISO8859', $charset );
486 $illegal =
'\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
487 $replace = $illegal .
'\t ?_';
488 if ( !preg_match(
"/[$illegal]/", $string ) ) {
491 $out =
"=?$charset?Q?";
492 $out .= preg_replace_callback(
"/([$replace])/",
494 return sprintf(
"=%02X", ord(
$matches[1] ) );
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output $out
the array() calling protocol came about after MediaWiki 1.4rc1.
Collection of static functions for sending mail.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses & $ret
static getTitleFor($name, $subpage=false, $fragment= '')
Get a localised Title object for a specified special page name If you don't need a full Title object...
div flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException'returning false will NOT prevent logging $e
static newFatal($message)
Factory function for fatal errors.
$wgAdditionalMailParams
Additional email parameters, will be passed as the last argument to mail() call.
if($ext== 'php'||$ext== 'php5') $mime
when a variable name is used in a it is silently declared as a new local masking the global
wfIsWindows()
Check if the operating system is Windows.
static sendWithPear($mailer, $dest, $headers, $body)
Send mail using a PEAR mailer.
wfDebug($text, $dest= 'all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
static getLocalInstance($ts=false)
Get a timestamp instance in the server local timezone ($wgLocaltimezone)
static send($to, $from, $subject, $body, $options=[])
This function will perform a direct (authenticated) login to a SMTP Server to use for mail relaying i...
static sanitizeHeaderValue($val)
Strips bad characters from a header value to prevent PHP mail header injection attacks.
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set and then return false from the hook function Ensure you consume the ChangeTagAfterDelete hook to carry out custom deletion actions as context called by AbstractContent::getParserOutput May be used to override the normal model specific rendering of page content as context as context $options
Stores a single person's name and email address.
toString()
Return formatted and quoted address to insert into SMTP headers.
static newGood($value=null)
Factory function for good results.
static run($event, array $args=[], $deprecatedVersion=null)
Call hook functions defined in Hooks::register and $wgHooks.
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
static makeMsgId()
Create a value suitable for the MessageId Header.
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
static arrayToHeaderString($headers, $endl=PHP_EOL)
Creates a single string from an associative array.
static sendInternal(array $to, MailAddress $from, $subject, $body, $options=[])
Helper function fo UserMailer::send() which does the actual sending.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
$wgEnotifMaxRecips
Maximum number of users to mail at once when using impersonal mail.
$wgAllowHTMLEmail
For parts of the system that have been updated to provide HTML email content, send both text and HTML...
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
$wgServer
URL of the server.
wfParseUrl($url)
parse_url() work-alike, but non-broken.
static quotedPrintable($string, $charset= '')
Converts a string into quoted-printable format.
static errorHandler($code, $string)
Set the mail error message in self::$mErrorString.
static rfc822Phrase($phrase)
Converts a string into a valid RFC 822 "phrase", such as is used for the sender name.
Allows to change the fields on the form that will be generated $name