From f0787b2e09844cedb3cac246378a09abcfc188d3 Mon Sep 17 00:00:00 2001 From: klm Date: Wed, 10 Mar 1999 13:10:14 +0000 Subject: Do *not* remove immediately for all 550 class errors. These will occur for transient things, like procmail errors or "can't create output". In general i'm dubious about the immediate-removal class, and would lean towards treating all bounces the same, with action on a cumulative incidence, so any transient problems get time to be fixed... --- Mailman/Bouncer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Mailman/Bouncer.py b/Mailman/Bouncer.py index 8553b7caa..2c70e2602 100644 --- a/Mailman/Bouncer.py +++ b/Mailman/Bouncer.py @@ -355,7 +355,7 @@ class Bouncer: (regex.compile('.*552 %s.*' % email_regexp), BOUNCE), (regex.compile('.*501 %s.*' % email_regexp), BOUNCE), (regex.compile('.*553 %s.*' % email_regexp), BOUNCE), - (regex.compile('.*550 %s.*' % email_regexp), REMOVE), + (regex.compile('.*550 %s.*' % email_regexp), BOUNCE), (regex.compile('%s .bounced.*' % email_regexp), BOUNCE), (regex.compile('.*%s\.\.\. Deferred.*' % email_regexp), BOUNCE), (regex.compile('.*User %s not known.*' % email_regexp), REMOVE), -- cgit v1.3.1