diff options
author | tkikuchi <> | 2004-10-19 05:07:42 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-10-19 05:07:42 +0000 |
commit | 4f3babd6c939e2133de80cb0e17719ae0651ab4a (patch) | |
tree | 4da2f7dd71a1e72fb27c76c71f25dc5ef1882aa9 /Mailman | |
parent | 175409e0f4d3b619895b6339971543d28a14d1e1 (diff) | |
download | mailman2-4f3babd6c939e2133de80cb0e17719ae0651ab4a.tar.gz mailman2-4f3babd6c939e2133de80cb0e17719ae0651ab4a.tar.xz mailman2-4f3babd6c939e2133de80cb0e17719ae0651ab4a.zip |
[ 874764 ] -admin address is now equiv to -bounce
Diffstat (limited to 'Mailman')
-rw-r--r-- | Mailman/Cgi/create.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py index 03c313bc..09e4790c 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -227,7 +227,7 @@ def process_request(doc, cgidata): # And send the notice to the list owner. if notify: - siteadmin = Utils.get_site_email(mlist.host_name, 'admin') + siteowner = Utils.get_site_email(mlist.host_name, 'owner') text = Utils.maketext( 'newlist.txt', {'listname' : listname, @@ -235,10 +235,10 @@ def process_request(doc, cgidata): 'admin_url' : mlist.GetScriptURL('admin', absolute=1), 'listinfo_url': mlist.GetScriptURL('listinfo', absolute=1), 'requestaddr' : mlist.GetRequestEmail(), - 'siteowner' : siteadmin, + 'siteowner' : siteowner, }, mlist=mlist) msg = Message.UserNotification( - owner, siteadmin, + owner, siteowner, _('Your new mailing list: %(listname)s'), text, mlist.preferred_language) msg.send(mlist) |