summaryrefslogtreecommitdiffstats
path: root/processmail
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2001-06-02 12:19:26 +0200
committerjustdave%syndicomm.com <>2001-06-02 12:19:26 +0200
commita05fe5024513bf2772682437311bd80b6675fb2d (patch)
treeae704e56a2a4126266a6488b92df68e3e4b58f96 /processmail
parentc9b20859d7e19439ce15ebb6af8d9266b43e10f3 (diff)
downloadbugzilla-a05fe5024513bf2772682437311bd80b6675fb2d.tar.gz
bugzilla-a05fe5024513bf2772682437311bd80b6675fb2d.tar.xz
Fix for bug 78407: extra safeguard against overpopping the email list when pruning people who aren't supposed to get mail.
Patch by Jake Steenhagen <jake@acutex.net> r= justdave@syndicomm.com
Diffstat (limited to 'processmail')
-rwxr-xr-xprocessmail1
1 files changed, 1 insertions, 0 deletions
diff --git a/processmail b/processmail
index d9395552f..16f911752 100755
--- a/processmail
+++ b/processmail
@@ -329,6 +329,7 @@ sub filterExcludeList ($$) {
# match found, so we remove the entry
if ($included eq $excluded) {
pop(@result);
+ last;
}
}
}