From 4f3babd6c939e2133de80cb0e17719ae0651ab4a Mon Sep 17 00:00:00 2001 From: tkikuchi <> Date: Tue, 19 Oct 2004 05:07:42 +0000 Subject: [ 874764 ] -admin address is now equiv to -bounce --- Mailman/Cgi/create.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Mailman') 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) -- cgit v1.2.3