generalmediawiki

Configure SMTP for outbound emails

Follow these steps:

  • Add the following code to the end of the /opt/bitnami/mediawiki/LocalSettings.php MediaWiki configuration file according to your SMTP server settings. This example shows how to configure it using a Gmail account. Replace USERNAME and PASSWORD with your Gmail account username and password respectively.

      $wgSMTP = array(
              'host' => 'ssl://smtp.gmail.com',
              'IDHost' => 'gmail.com',
              'port' => 465,
              'username' => 'USERNAME@gmail.com',
              'password' => 'PASSWORD',
              'auth' => true
      );
    
  • Restart the servers.

To configure the application to use other third-party SMTP services for outgoing email, such as SendGrid, refer to the FAQ.

NOTE: If you are using Gmail as the outbound email server, your application’s attempts to send outgoing emails may be blocked by Gmail if it considers the authentication attempts to be suspicious. When this happens, you will receive a Gmail security alert at the corresponding Gmail address. To proceed, you will need to manually confirm the validity of the authentication attempt before Gmail will permit the application to send outbound emails. For more information on this and other Gmail issues related to outbound email from your application, refer to our Gmail SMTP troubleshooting page.

Last modification February 9, 2023