From 6982af2deb77df81743503147bd430895ba55219 Mon Sep 17 00:00:00 2001 From: Byron Jones Date: Mon, 25 Feb 2013 17:33:17 +0800 Subject: Bug 844724: updates for the push extension --- Bugzilla/BugMail.pm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Bugzilla/BugMail.pm') diff --git a/Bugzilla/BugMail.pm b/Bugzilla/BugMail.pm index 696db5ceb..ea79947b8 100644 --- a/Bugzilla/BugMail.pm +++ b/Bugzilla/BugMail.pm @@ -294,7 +294,9 @@ sub Send { # happen after the bugmail_recipients hook. if ($user->email_enabled && $dep_ok && ($user->login !~ /bugs$/) && - ($user->login !~ /\.tld$/)) + # sync-1@bugzilla.tld here is a temporary hack, see bug 844724 + ($user->login eq 'sync-1@bugzilla.tld' || $user->login !~ /\.tld$/)) + { # OK, OK, if we must. Email the user. -- cgit v1.2.3-24-g4f1b