Added the ability to do an authenticated SMTP login to send mail.
authorNicholas Pisarro, Jr <npassoc@users.mediawiki.org>
Fri, 27 Feb 2004 12:48:07 +0000 (12:48 +0000)
committerNicholas Pisarro, Jr <npassoc@users.mediawiki.org>
Fri, 27 Feb 2004 12:48:07 +0000 (12:48 +0000)
commitba3cde9c175df2434668181f46e0f681bbc3d938
treeb678643f6696338fd444a014fb5a0f353c8a2088
parent075c1209f0af17388cc2447558504b484b8c8c30
Added the ability to do an authenticated SMTP login to send mail.

  * by setting the array variable '$wgSMTP' in Local settings,
    the source will use PEAR:mail to connect to a specific
    SMTP server to send mail. It will use an authenticated
    login, if requested.

  * Example:

    $wgSMTP = array (  "host" => "smtp.wherever.com",\r                       "IDHost" => "mail.wikipedia.org",\r                       "port" => "25",\r                       "auth" => true,\r                       "username" => "mailID",\r                       "password" => "mailPswd");
includes/DefaultSettings.php
includes/SpecialEmailuser.php
includes/SpecialUserlogin.php
includes/UserMailer.php [new file with mode: 0644]