Last active
August 29, 2015 14:18
-
-
Save daanraman/a0475e7c788a1fe1bf5d to your computer and use it in GitHub Desktop.
Adding SMTP support in MediaWiki
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add the following to LocalSettings.php | |
$wgSMTP = array( | |
'host' => 'smtp.gmail.com', | |
'IDHost' => "wikibiz.vn", | |
'port' => 587, | |
'auth' => true, | |
'username' => [email protected] | |
'password' => "mypassword" | |
); | |
$wgEnableEmail = true; | |
Then you install PEAR packages: | |
pear install MAIL Net_SMTP | |
Reference: http://www.mediawiki.org/wiki/Manual_talk:$wgSMTP#Using_Gmail |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment