First off, you'll need an SMTP server. Ask tech services what server that is for your organization, or you may be able to figure it out yourself by looking at your own email settings.
Then, you'll want to set up the following in your LocalSettings.php:
Code:
$wgSMTP = array(
'host' => "mysmtpserver.mydomain.edu",
'IDHost' => "mydomain.edu.com",
'port' => 25,
'auth' => false,
'username' => "",
'password' => ""
);
(you may need to add username and password entries, depending on your SMTP setup...again, ask your tech services)
Bookmarks