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

Fix an issue where "CC"-only email improperly wiped CC addresses

Summary: Ref T920. See <https://discourse.phabricator-community.org/t/ccd-emails-not-working-with-sendgrid-since-2019-week-1-update/2294>.

Test Plan: Used `bin/mail send-test --cc ...` without `--to`, got email.

Reviewers: amckinley

Reviewed By: amckinley

Maniphest Tasks: T920

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

-1
-1
src/applications/metamta/engine/PhabricatorMailEmailEngine.php
··· 54 54 // If that also fails, move the "Cc:" line to "To:". 55 55 if (!$to_addresses) { 56 56 $void_address = $this->newVoidEmailAddress(); 57 - $cc_addresses = $to_addresses; 58 57 $to_addresses = array($void_address); 59 58 } 60 59