@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 19 lines 435 B view raw
1<?php 2 3final class PhabricatorMetaMTAApplicationEmailTransaction 4 extends PhabricatorApplicationTransaction { 5 6 const KEY_CONFIG = 'appemail.config.key'; 7 8 const TYPE_ADDRESS = 'appemail.address'; 9 const TYPE_CONFIG = 'appemail.config'; 10 11 public function getApplicationName() { 12 return 'metamta'; 13 } 14 15 public function getApplicationTransactionType() { 16 return PhabricatorMetaMTAApplicationEmailPHIDType::TYPECONST; 17 } 18 19}