aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman
diff options
context:
space:
mode:
authorTokio Kikuchi <tkikuchi@is.kochi-u.ac.jp>2007-11-20 14:28:13 +0900
committerTokio Kikuchi <tkikuchi@is.kochi-u.ac.jp>2007-11-20 14:28:13 +0900
commit58eb22105ebd954d20f10e60ff94ab716e3ce089 (patch)
tree63534b9b6863898dd3b0ab16f25d27bfc712054d /Mailman
parent534370ddffa29e5c4b8e212f04b339295e7789dd (diff)
parent93a629cb4d774ffe196ffa6a9411212ecdb884ac (diff)
downloadmailman2-58eb22105ebd954d20f10e60ff94ab716e3ce089.tar.gz
mailman2-58eb22105ebd954d20f10e60ff94ab716e3ce089.tar.xz
mailman2-58eb22105ebd954d20f10e60ff94ab716e3ce089.zip
merge & commit
Diffstat (limited to 'Mailman')
-rw-r--r--Mailman/Queue/BounceRunner.py17
1 files changed, 14 insertions, 3 deletions
diff --git a/Mailman/Queue/BounceRunner.py b/Mailman/Queue/BounceRunner.py
index bb0e49da..11fe3fcb 100644
--- a/Mailman/Queue/BounceRunner.py
+++ b/Mailman/Queue/BounceRunner.py
@@ -180,11 +180,21 @@ class BounceRunner(Runner, BounceMixin):
# but a list owner address itself bounced. That's bad, and for now
# we'll simply log the problem and attempt to deliver the message to
# the site owner.
- #
+ # - the list owner could have set listname-bounces as the owner
+ # address. That's really bad as it results in a loop of ever
+ # growing unrecognized bounce messages. We detect this based on the
+ # X-BeenThere header and handle it like a list owner bounce. No
+ # real bounce will have an X-BeenThere header for the list.
+ bts = [s.strip().lower() for s in msg.get_all('x-beenthere', [])]
+ if mlist.GetListEmail().lower() in bts:
+ bt = True
+ else:
+ bt = False
# All messages to list-owner@vdom.ain have their envelope sender set
# to site-owner@dom.ain (no virtual domain). Is this a bounce for a
- # message to a list owner, coming to the site owner?
- if msg.get('to', '') == Utils.get_site_email(extra='owner'):
+ # message to a list owner, coming to the site owner, or an owner
+ # notice sent directly to the -bounces address?
+ if msg.get('to', '') == Utils.get_site_email(extra='owner') or bt:
# Send it on to the site owners, but craft the envelope sender to
# be the -loop detection address, so if /they/ bounce, we won't
# get stuck in a bounce loop.
@@ -192,6 +202,7 @@ class BounceRunner(Runner, BounceMixin):
recips=[Utils.get_site_email()],
envsender=Utils.get_site_email(extra='loop'),
)
+ return
# List isn't doing bounce processing?
if not mlist.bounce_processing:
return