Skip to content

Instantly share code, notes, and snippets.

@daanraman
Last active August 29, 2015 14:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save daanraman/a0475e7c788a1fe1bf5d to your computer and use it in GitHub Desktop.
Save daanraman/a0475e7c788a1fe1bf5d to your computer and use it in GitHub Desktop.
Adding SMTP support in MediaWiki
Add the following to LocalSettings.php
$wgSMTP = array(
'host' => 'smtp.gmail.com',
'IDHost' => "wikibiz.vn",
'port' => 587,
'auth' => true,
'username' => myusername@gmail.com
'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