mirror of
https://we.phorge.it/source/phorge.git
synced 2024-12-19 12:00:55 +01:00
Don't send email to bots subscribed to diffs
Summary: Occasionally a bot will get subscribed to a differential revision; when this happens we shouldn't send them an email, because otherwise the author of the diff will get a bounce email if the bot has an invalid emal address. Test Plan: re-sent a message that had a bot on the cc list, saw that it was no longer included when it got sent. Reviewers: epriestley, jungejason, vrana CC: aran, Koolvin Differential Revision: https://secure.phabricator.com/D2479
This commit is contained in:
parent
6865f024c8
commit
e9c3894861
1 changed files with 2 additions and 1 deletions
|
@ -171,7 +171,8 @@ final class PhabricatorObjectHandleData {
|
|||
$user->getUsername().' ('.$user->getRealName().')');
|
||||
$handle->setAlternateID($user->getID());
|
||||
$handle->setComplete(true);
|
||||
$handle->setDisabled($user->getIsDisabled());
|
||||
$handle->setDisabled($user->getIsDisabled() ||
|
||||
$user->getIsSystemAgent());
|
||||
|
||||
$img_uri = idx($images, $user->getProfileImagePHID());
|
||||
if ($img_uri) {
|
||||
|
|
Loading…
Reference in a new issue