diff --git a/lib/mail.php b/lib/mail.php index 17a58de469..223721a345 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -736,6 +736,11 @@ function mail_notify_attn($user, $notice) return; } + if ($user->hasBlocked($sender)) { + // If the author has blocked us, don't spam them with a notification. + return; + } + $bestname = $sender->getBestName(); common_switch_locale($user->language);