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

Allow administrators to configure "Email Format" settings for lists

Summary: Ref T8387. Mostly completeness, but you might want to choose html vs text mail.

Test Plan: {F468203}

Reviewers: btrahan

Reviewed By: btrahan

Subscribers: epriestley

Maniphest Tasks: T8387

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

+11 -2
+11 -2
src/applications/settings/panel/PhabricatorEmailFormatSettingsPanel.php
··· 15 15 return pht('Email'); 16 16 } 17 17 18 + public function isEditableByAdministrators() { 19 + if ($this->getUser()->getIsMailingList()) { 20 + return true; 21 + } 22 + 23 + return false; 24 + } 25 + 18 26 public function processRequest(AphrontRequest $request) { 19 - $user = $request->getUser(); 27 + $viewer = $this->getViewer(); 28 + $user = $this->getUser(); 20 29 21 30 $preferences = $user->loadPreferences(); 22 31 ··· 98 107 99 108 $form = new AphrontFormView(); 100 109 $form 101 - ->setUser($user); 110 + ->setUser($viewer); 102 111 103 112 if (PhabricatorMetaMTAMail::shouldMultiplexAllMail()) { 104 113 $html_email_control = id(new AphrontFormSelectControl())