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

Send HTML email by default

Summary: Ref T10694. Switch default mode to HTML since it has a number of significant advantages and we haven't seen reports of significant problems.

Test Plan:
- Switched preference to default (saw "HTML" in UI).
- Sent myself some mail.
- Got HTML mail.

Reviewers: chad

Reviewed By: chad

Maniphest Tasks: T10694

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

+2 -2
+1 -1
src/applications/metamta/storage/PhabricatorMetaMTAMail.php
··· 634 634 } 635 635 $mailer->setBody($body); 636 636 637 - $html_emails = false; 637 + $html_emails = true; 638 638 if ($use_prefs && $prefs) { 639 639 $html_emails = $prefs->getPreference( 640 640 PhabricatorUserPreferences::PREFERENCE_HTML_EMAILS,
+1 -1
src/applications/settings/panel/PhabricatorEmailFormatSettingsPanel.php
··· 76 76 ? pht('Vary') 77 77 : pht('Do Not Vary'); 78 78 79 - $html_emails_default = pht('Plain Text'); 79 + $html_emails_default = pht('HTML'); 80 80 81 81 $re_prefix_value = $preferences->getPreference($pref_re_prefix); 82 82 if ($re_prefix_value === null) {