From: justdave%syndicomm.com <> Date: Sun, 28 Sep 2003 12:25:18 +0000 (+0000) Subject: Bug 219508: processmail rescanall would not send e-mails about more than one bug... X-Git-Tag: bugzilla-2.16.4~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ae2cda849047b5a8aa944a57d81cc015000fe111;p=thirdparty%2Fbugzilla.git Bug 219508: processmail rescanall would not send e-mails about more than one bug to the same address r=preed, a=justdave --- diff --git a/processmail b/processmail index 3ddf28d949..b98d0f0ee7 100755 --- a/processmail +++ b/processmail @@ -854,6 +854,7 @@ if ($ARGV[0] eq "rescanall") { print "All appropriate mail appears to have been sent\n" } foreach my $id (@list) { + %seen = (); if (detaint_natural($id)) { ProcessOneBug($id); }