@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.

Make base64 the default SMTP encoding

Summary: Ref T11120. If this works, I'll just remove this option completely.

Test Plan: ¯\_(ツ)_/¯

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T11120

Differential Revision: https://secure.phabricator.com/D16095

+3 -9
+3 -9
src/applications/config/option/PhabricatorPHPMailerConfigOptions.php
··· 55 55 $this->newOption('phpmailer.smtp-password', 'string', null) 56 56 ->setHidden(true) 57 57 ->setDescription(pht('Password for SMTP.')), 58 - $this->newOption('phpmailer.smtp-encoding', 'string', '8bit') 58 + $this->newOption('phpmailer.smtp-encoding', 'string', 'base64') 59 59 ->setSummary(pht('Configure how mail is encoded.')) 60 60 ->setDescription( 61 61 pht( ··· 64 64 "encoding. If you're having trouble with mail being mangled or ". 65 65 "arriving with too many or too few newlines, you may try ". 66 66 "adjusting this setting.\n\n". 67 - "Supported values are `8bit` (default), `quoted-printable`, ". 68 - "`7bit`, `binary` and `base64`.\n\n". 69 - "The settings in the table below may work well.\n\n". 70 - "| MTA | Setting | Notes\n". 71 - "|-----|---------|------\n". 72 - "| SendGrid via SMTP | `quoted-printable` | Double newlines under ". 73 - "`8bit`.\n". 74 - "| All Other MTAs | `8bit` | Default setting.")), 67 + "Supported values are `8bit`, `quoted-printable`, ". 68 + "`7bit`, `binary` and `base64`.")), 75 69 ); 76 70 } 77 71