diff options
author | Mark Sapiro <mark@msapiro.net> | 2009-08-05 11:53:15 -0700 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2009-08-05 11:53:15 -0700 |
commit | d98ec864d7ed4b4f68cd77cf87303e6e6610d693 (patch) | |
tree | acc2424fab6640a3fd543431cc579a2f5b0c15ff /Mailman | |
parent | e2f5b62bce1eeb1123c83fefc5cefa7b5d776319 (diff) | |
download | mailman2-d98ec864d7ed4b4f68cd77cf87303e6e6610d693.tar.gz mailman2-d98ec864d7ed4b4f68cd77cf87303e6e6610d693.tar.xz mailman2-d98ec864d7ed4b4f68cd77cf87303e6e6610d693.zip |
Replies to commands sent to list-request now come From: list-owner
instead of list-bounces.
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Queue/CommandRunner.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mailman/Queue/CommandRunner.py b/Mailman/Queue/CommandRunner.py index 5920b89f..86d4a46c 100644 --- a/Mailman/Queue/CommandRunner.py +++ b/Mailman/Queue/CommandRunner.py @@ -1,4 +1,4 @@ -# Copyright (C) 1998-2007 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2009 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 @@ -190,7 +190,7 @@ To obtain instructions, send a message containing just the word "help". return msg = Message.UserNotification( recip, - self.mlist.GetBouncesEmail(), + self.mlist.GetOwnerEmail(), _('The results of your email commands'), lang=self.msgdata['lang']) msg.set_type('multipart/mixed') |