From 8ddb9e28750d94d4511d6147ad814114dba7a7d8 Mon Sep 17 00:00:00 2001 From: lkassianik Date: Thu, 8 Jan 2015 16:00:57 -0800 Subject: [PATCH] T6869, Mailing list "Public (No Login Required)" name should be visible to logged out users. Summary: When viewing a task with a mailing list CC where the mailing list is public, logged out user should see the name of the mailing list Test Plan: Create public mailing list, CC mailing list on task, logout and view task, mailing list name should still be visible on the task Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Differential Revision: https://secure.phabricator.com/D11290 --- .../mailinglists/storage/PhabricatorMetaMTAMailingList.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php b/src/applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php index 70e758715e..b80cf8644a 100644 --- a/src/applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php +++ b/src/applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php @@ -51,7 +51,7 @@ final class PhabricatorMetaMTAMailingList extends PhabricatorMetaMTADAO } public function getPolicy($capability) { - return PhabricatorPolicies::POLICY_USER; + return PhabricatorPolicies::getMostOpenPolicy(); } public function hasAutomaticCapability($capability, PhabricatorUser $viewer) {