diff options
author | Byron Jones <glob@mozilla.com> | 2014-11-04 07:53:12 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-11-04 07:53:12 +0100 |
commit | 7fdcd8ef2760a536190c44e1318e4342d27ec619 (patch) | |
tree | c340a019a23d6072aa47b2eceff5c503c7d6a86f /Bugzilla | |
parent | 32e6ac30461863f4fc89a050455794436affa2a3 (diff) | |
download | bugzilla-7fdcd8ef2760a536190c44e1318e4342d27ec619.tar.gz bugzilla-7fdcd8ef2760a536190c44e1318e4342d27ec619.tar.xz |
Bug 1092037: backport bug 1062739 to bmo (add the ability for administrators to limit the number of emails sent to a user per minute and hour)
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Job/Mailer.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Job/Mailer.pm b/Bugzilla/Job/Mailer.pm index e3b94894a..56b6d4f69 100644 --- a/Bugzilla/Job/Mailer.pm +++ b/Bugzilla/Job/Mailer.pm @@ -63,7 +63,7 @@ sub work { sub process_job { my ($class, $arg) = @_; - MessageToMTA($arg, 1); + MessageToMTA($arg->{msg}, 1); } 1; |