From a05fe5024513bf2772682437311bd80b6675fb2d Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sat, 2 Jun 2001 10:19:26 +0000 Subject: [PATCH] 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 --- processmail | 1 + 1 file changed, 1 insertion(+) 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; } } } -- 2.47.2