From f21881d5faddd56f57f52dc1a1f699c3dc9518e3 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 7 Sep 2012 10:27:14 -0400 Subject: [PATCH] Don't send @-reply notification if the mentioned person has blocked the sender --- lib/mail.php | 5 +++++ 1 file changed, 5 insertions(+) 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);