aboutsummaryrefslogtreecommitdiffstats
path: root/Mailman
diff options
context:
space:
mode:
authorbwarsaw <>2004-01-23 00:26:07 +0000
committerbwarsaw <>2004-01-23 00:26:07 +0000
commitc3e18b3401333f95bf36b4ceb8272068aeaaad6f (patch)
treea85e936d0fe561d09f83534dd9ae39d84d28ba71 /Mailman
parent22e4d2db60dafae9641e653222e43b6bbe44973d (diff)
downloadmailman2-c3e18b3401333f95bf36b4ceb8272068aeaaad6f.tar.gz
mailman2-c3e18b3401333f95bf36b4ceb8272068aeaaad6f.tar.xz
mailman2-c3e18b3401333f95bf36b4ceb8272068aeaaad6f.zip
_dispose(): Fix typo in comparison to site-list owner address. Fix given by
SHIGENO Kazutaka.
Diffstat (limited to '')
-rw-r--r--Mailman/Queue/BounceRunner.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Queue/BounceRunner.py b/Mailman/Queue/BounceRunner.py
index 33baa4d4..ffffc2a6 100644
--- a/Mailman/Queue/BounceRunner.py
+++ b/Mailman/Queue/BounceRunner.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2001-2003 by the Free Software Foundation, Inc.
+# Copyright (C) 2001-2004 by the Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
@@ -68,7 +68,7 @@ class BounceRunner(Runner):
# 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'):
+ if msg.get('to', '') == Utils.get_site_email(extra='owner'):
# 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.