diff options
author | Mark Sapiro <mark@msapiro.net> | 2010-02-27 09:57:24 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2010-02-27 09:57:24 -0800 |
commit | 136ceb7679d51fa50504bbcdbf09c224c188e2ec (patch) | |
tree | 1cbeb6aff4ce6fbfbd10360c5b430a671155125d /Mailman/Cgi | |
parent | 3eaeb16bbe2eeb039bd37a190f8ddf5d36533c57 (diff) | |
download | mailman2-136ceb7679d51fa50504bbcdbf09c224c188e2ec.tar.gz mailman2-136ceb7679d51fa50504bbcdbf09c224c188e2ec.tar.xz mailman2-136ceb7679d51fa50504bbcdbf09c224c188e2ec.zip |
Added a urlhost argument to the MailList.MailList.Create() method to
allow bin/newlist and the the create CGI to pass urlhost so the host
will be correct in the listinfo link on the emptyarchive page.
Bug #529100.
Diffstat (limited to 'Mailman/Cgi')
-rw-r--r-- | Mailman/Cgi/create.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py index 7e21b981..dd862208 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -1,4 +1,4 @@ -# Copyright (C) 2001-2008 by the Free Software Foundation, Inc. +# Copyright (C) 2001-2010 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 @@ -187,7 +187,8 @@ def process_request(doc, cgidata): oldmask = os.umask(002) try: try: - mlist.Create(listname, owner, pw, langs, emailhost) + mlist.Create(listname, owner, pw, langs, emailhost, + urlhost=hostname) finally: os.umask(oldmask) except Errors.EmailAddressError, e: |