Comment 2 for bug 670683

Revision history for this message
Ruslan Kabalin (rkabalin) wrote :

In order to use gmail smtp server, in addition to the general settings, secure connection protocol has to be defined:

use either:
   $cfg->smtpsecure = 'ssl';
   $cfg->smtpport = 465;
or
   $cfg->smtpsecure = 'tls';
   $cfg->smtpport = 587;

Once the fix is populated to stable versions, it definitely worth mentioning it in Installation Troubleshooting wiki page.