@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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

+1 -1
+1 -1
src/applications/metamta/adapter/PhabricatorMailImplementationPHPMailerAdapter.php
··· 38 38 'host' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-host'), 39 39 'port' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-port'), 40 40 'user' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-user'), 41 - 'password' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-passsword'), 41 + 'password' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-password'), 42 42 'protocol' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-protocol'), 43 43 'encoding' => PhabricatorEnv::getEnvConfig('phpmailer.smtp-encoding'), 44 44 'mailer' => PhabricatorEnv::getEnvConfig('phpmailer.mailer'),