From: justdave%syndicomm.com <> Date: Sat, 2 Jun 2001 10:19:26 +0000 (+0000) Subject: Fix for bug 78407: extra safeguard against overpopping the email list when pruning... X-Git-Tag: bugzilla-2.14~106 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a05fe5024513bf2772682437311bd80b6675fb2d;p=thirdparty%2Fbugzilla.git 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 r= justdave@syndicomm.com --- diff --git a/processmail b/processmail index d9395552fe..16f9117529 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; } } }