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

at recaptime-dev/main 25 lines 606 B view raw
1<?php 2 3final class OwnersPackageReplyHandler extends PhabricatorMailReplyHandler { 4 public function validateMailReceiver($mail_receiver) { 5 if (!($mail_receiver instanceof PhabricatorOwnersPackage)) { 6 throw new Exception( 7 pht( 8 'Receiver is not a %s!', 9 'PhabricatorOwnersPackage')); 10 } 11 } 12 13 public function getPrivateReplyHandlerEmailAddress( 14 PhabricatorUser $user) { 15 return null; 16 } 17 18 public function getPublicReplyHandlerEmailAddress() { 19 return null; 20 } 21 22 protected function receiveEmail(PhabricatorMetaMTAReceivedMail $mail) { 23 return; 24 } 25}