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'     => "mail.example.com", //could also be an IP address
 'IDHost'   => "example.com",
 '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 Warning: This setting requires PEAR's Mail package to be installed (run "pear install MAIL Net_SMTP").

Language: English  • 日本語
Personal tools
Namespaces
Variants
Actions
Site
Support
Download
Development
Communication
Toolbox