Fix PHPMailer/SMTP configuration typo for legacy SMTP configurations
Summary: See <https://discourse.phabricator-community.org/t/phpmailer-cannot-read-configuration-value-because-of-typo/1094>. Test Plan: Browsed a dictionary. (This doesn't get hit when configured via `cluster.mailers`, which is how I previously re-tested SMTP configuration.) Differential Revision: https://secure.phabricator.com/D19058
This commit is contained in:
@@ -38,7 +38,7 @@ final class PhabricatorMailImplementationPHPMailerAdapter
|
||||
'host' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-host'),
|
||||
'port' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-port'),
|
||||
'user' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-user'),
|
||||
'password' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-passsword'),
|
||||
'password' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-password'),
|
||||
'protocol' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-protocol'),
|
||||
'encoding' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-encoding'),
|
||||
'mailer' => PhabricatorEnv::getEnvConfig('phpmailer.mailer'),
|
||||
|
||||
Reference in New Issue
Block a user