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 ] );
277 $returnPathCLI =
'"' . str_replace(
'"',
'', $returnPath ) .
'"';
278 $extraParams .=
' -f ' . $returnPathCLI;
280 $headers[
'Return-Path'] = $returnPath;
283 $headers[
'Reply-To'] = $replyto->toString();
287 $headers[
'Message-ID'] = self::makeMsgId();
288 $headers[
'X-Mailer'] =
'MediaWiki mailer';
296 if ( is_array( $body ) ) {
298 wfDebug(
"Assembling multipart mime email\n" );
299 if ( !stream_resolve_include_path(
'Mail/mime.php' ) ) {
300 wfDebug(
"PEAR Mail_Mime package is not installed. Falling back to text email.\n" );
302 $body = $body[
'text'];
305 if ( !class_exists(
'Mail_mime' ) ) {
306 require_once
'Mail/mime.php';
309 $body[
'text'] = str_replace(
"\n",
"\r\n", $body[
'text'] );
310 $body[
'html'] = str_replace(
"\n",
"\r\n", $body[
'html'] );
312 $mime =
new Mail_mime( [
314 'text_charset' =>
'UTF-8',
315 'html_charset' =>
'UTF-8'
317 $mime->setTXTBody( $body[
'text'] );
318 $mime->setHTMLBody( $body[
'html'] );
319 $body =
$mime->get();
320 $headers =
$mime->headers( $headers );
323 if (
$mime === null ) {
326 $body = str_replace(
"\n",
"\r\n", $body );
328 $headers[
'MIME-Version'] =
'1.0';
329 $headers[
'Content-type'] = $contentType;
330 $headers[
'Content-transfer-encoding'] =
'8bit';
334 if ( !
Hooks::run(
'UserMailerTransformMessage',
335 [ $to, $from, &$subject, &$headers, &$body, &$error ] )
344 $ret =
Hooks::run(
'AlternateUserMailer', [ $headers, $to, $from, $subject, $body ] );
345 if (
$ret ===
false ) {
348 } elseif (
$ret !==
true ) {
353 if ( is_array( $wgSMTP ) ) {
355 if ( !class_exists(
'Mail' ) ) {
357 if ( !stream_resolve_include_path(
'Mail.php' ) ) {
358 throw new MWException(
'PEAR mail package is not installed' );
360 require_once
'Mail.php';
363 MediaWiki\suppressWarnings();
366 $mail_object =& Mail::factory(
'smtp', $wgSMTP );
367 if ( PEAR::isError( $mail_object ) ) {
368 wfDebug(
"PEAR::Mail factory failed: " . $mail_object->getMessage() .
"\n" );
369 MediaWiki\restoreWarnings();
373 wfDebug(
"Sending mail via PEAR::Mail\n" );
375 $headers[
'Subject'] = self::quotedPrintable( $subject );
378 if ( count( $to ) == 1 ) {
379 $headers[
'To'] = $to[0]->toString();
384 $chunks = array_chunk( $to, $wgEnotifMaxRecips );
385 foreach ( $chunks
as $chunk ) {
386 $status = self::sendWithPear( $mail_object, $chunk, $headers, $body );
389 MediaWiki\restoreWarnings();
393 MediaWiki\restoreWarnings();
397 if ( count( $to ) > 1 ) {
398 $headers[
'To'] =
'undisclosed-recipients:;';
400 $headers = self::arrayToHeaderString( $headers, $endl );
402 wfDebug(
"Sending mail via internal mail() function\n" );
404 self::$mErrorString =
'';
405 $html_errors = ini_get(
'html_errors' );
406 ini_set(
'html_errors',
'0' );
407 set_error_handler(
'UserMailer::errorHandler' );
410 foreach ( $to
as $recip ) {
413 self::quotedPrintable( $subject ),
420 restore_error_handler();
424 restore_error_handler();
425 ini_set(
'html_errors', $html_errors );
427 if ( self::$mErrorString ) {
428 wfDebug(
"Error sending mail: " . self::$mErrorString .
"\n" );
430 } elseif ( !$sent ) {
432 wfDebug(
"Unknown error sending mail\n" );
447 self::$mErrorString = preg_replace(
'/^mail\(\)(\s*\[.*?\])?: /',
'', $string );
456 return strtr( $val, [
"\r" =>
'',
"\n" =>
'' ] );
466 $phrase = self::sanitizeHeaderValue( $phrase );
468 $phrase = str_replace(
'"',
'', $phrase );
469 return '"' . $phrase .
'"';
487 if ( empty( $charset ) ) {
490 $charset = strtoupper( $charset );
491 $charset = str_replace(
'ISO-8859',
'ISO8859', $charset );
493 $illegal =
'\x00-\x08\x0b\x0c\x0e-\x1f\x7f-\xff=';
494 $replace = $illegal .
'\t ?_';
495 if ( !preg_match(
"/[$illegal]/", $string ) ) {
498 $out =
"=?$charset?Q?";
499 $out .= preg_replace_callback(
"/([$replace])/",
501 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