Manual:$wgSMTP

From MediaWiki.org

Jump to: navigation, search
Email settings: $wgSMTP
For using a direct (authenticated) SMTP server connection.
Introduced in version: 1.2.0
Removed in version: still in use
Allowed Values: (see below)
Default Value: false

Other settings: Alphabetical | By Function


Details

For using a direct (authenticated) SMTP server connection, you need to fill an array. Set to false (the default value) to use the built-in PHP mail() function.

For example:

$wgSMTP = array(
 'host'     => "10.1.6.2",
 'IDHost'   => "domain for MessageID",
 'port'     => 25,
 'auth'     => true,
 'username' => "my_user_name",
 'password' => "my_password"
);

'IDHost' is a MediaWiki-specific setting used to build the Message-ID email header (see RFC 2822, sec 3.6.4 for more information on a properly formatted Message-ID). For the remaining settings, see Mail::factory() for a more complete description. (Scroll down to the smtp parameter.)

Warning: This setting requires PEAR's Mail package to be installed (run "pear install MAIL" and "pear install Net_SMTP").

Personal tools