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

Put PhabricatorMetaMTAMailingList back to keep bin/storage adjust happy for now

Auditors: btrahan

+42
+2
src/__phutil_library_map__.php
··· 2058 2058 'PhabricatorMetaMTAMailableDatasource' => 'applications/metamta/typeahead/PhabricatorMetaMTAMailableDatasource.php', 2059 2059 'PhabricatorMetaMTAMailableFunctionDatasource' => 'applications/metamta/typeahead/PhabricatorMetaMTAMailableFunctionDatasource.php', 2060 2060 'PhabricatorMetaMTAMailgunReceiveController' => 'applications/metamta/controller/PhabricatorMetaMTAMailgunReceiveController.php', 2061 + 'PhabricatorMetaMTAMailingList' => 'applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php', 2061 2062 'PhabricatorMetaMTAMemberQuery' => 'applications/metamta/query/PhabricatorMetaMTAMemberQuery.php', 2062 2063 'PhabricatorMetaMTAPermanentFailureException' => 'applications/metamta/exception/PhabricatorMetaMTAPermanentFailureException.php', 2063 2064 'PhabricatorMetaMTAReceivedMail' => 'applications/metamta/storage/PhabricatorMetaMTAReceivedMail.php', ··· 5458 5459 'PhabricatorMetaMTAMailableDatasource' => 'PhabricatorTypeaheadCompositeDatasource', 5459 5460 'PhabricatorMetaMTAMailableFunctionDatasource' => 'PhabricatorTypeaheadCompositeDatasource', 5460 5461 'PhabricatorMetaMTAMailgunReceiveController' => 'PhabricatorMetaMTAController', 5462 + 'PhabricatorMetaMTAMailingList' => 'PhabricatorMetaMTADAO', 5461 5463 'PhabricatorMetaMTAMemberQuery' => 'PhabricatorQuery', 5462 5464 'PhabricatorMetaMTAPermanentFailureException' => 'Exception', 5463 5465 'PhabricatorMetaMTAReceivedMail' => 'PhabricatorMetaMTADAO',
+40
src/applications/mailinglists/storage/PhabricatorMetaMTAMailingList.php
··· 1 + <?php 2 + 3 + /** 4 + * TODO: This class is just here to keep `storage adjust` happy until we 5 + * destroy the table. 6 + */ 7 + final class PhabricatorMetaMTAMailingList extends PhabricatorMetaMTADAO { 8 + 9 + protected $name; 10 + protected $email; 11 + protected $uri; 12 + 13 + 14 + protected function getConfiguration() { 15 + return array( 16 + self::CONFIG_AUX_PHID => true, 17 + self::CONFIG_COLUMN_SCHEMA => array( 18 + 'name' => 'text128', 19 + 'email' => 'text128', 20 + 'uri' => 'text255?', 21 + ), 22 + self::CONFIG_KEY_SCHEMA => array( 23 + 'key_phid' => null, 24 + 'phid' => array( 25 + 'columns' => array('phid'), 26 + 'unique' => true, 27 + ), 28 + 'email' => array( 29 + 'columns' => array('email'), 30 + 'unique' => true, 31 + ), 32 + 'name' => array( 33 + 'columns' => array('name'), 34 + 'unique' => true, 35 + ), 36 + ), 37 + ) + parent::getConfiguration(); 38 + } 39 + 40 + }