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

MetaMTA - make test mail implementation support message id headers by default

Summary: Fixes T6372. Apparently ye olde error logs get some crazy spam action as is... Looking around at call sites, we do not specify $config (which could specify the supportage of message id header) so it seems correct to default this to something. I went with "true" as the spot we use this seems like pretty easy stuff that will always work.

Test Plan: lots of thinking

Reviewers: epriestley

Reviewed By: epriestley

Subscribers: Korvin, epriestley

Maniphest Tasks: T6372

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

+1 -1
+1 -1
src/applications/metamta/adapter/PhabricatorMailImplementationTestAdapter.php
··· 75 75 } 76 76 77 77 public function supportsMessageIDHeader() { 78 - return $this->config['supportsMessageIDHeader']; 78 + return idx($this->config, 'supportsMessageIDHeader', true); 79 79 } 80 80 81 81 public function send() {