aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2008-07-30 08:58:02 -0700
committerMark Sapiro <mark@msapiro.net>2008-07-30 08:58:02 -0700
commitf0763fc617af7ca8386351c71058f4472443b87a (patch)
treec036bc5e55ebb6efc0c901d5f77362fc2ed18832
parent3c3968ea8f5082b882c68201ee519489a30869a4 (diff)
downloadmailman2-f0763fc617af7ca8386351c71058f4472443b87a.tar.gz
mailman2-f0763fc617af7ca8386351c71058f4472443b87a.tar.xz
mailman2-f0763fc617af7ca8386351c71058f4472443b87a.zip
Changed ListAdmin.py to make rejected post messages From: the -owner address
instead of the -bounces address.
-rw-r--r--Mailman/ListAdmin.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/ListAdmin.py b/Mailman/ListAdmin.py
index ba486e09..191b76f8 100644
--- a/Mailman/ListAdmin.py
+++ b/Mailman/ListAdmin.py
@@ -1,4 +1,4 @@
-# Copyright (C) 1998-2004 by the Free Software Foundation, Inc.
+# Copyright (C) 1998-2008 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
@@ -499,7 +499,7 @@ class ListAdmin:
subject = _('Request to mailing list %(realname)s rejected')
finally:
i18n.set_translation(otrans)
- msg = Message.UserNotification(recip, self.GetBouncesEmail(),
+ msg = Message.UserNotification(recip, self.GetOwnerEmail(),
subject, text, lang)
msg.send(self)