diff options
Diffstat (limited to 'Mailman/Cgi/create.py')
| -rw-r--r-- | Mailman/Cgi/create.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/Cgi/create.py b/Mailman/Cgi/create.py index 70c0d75d1..0089ad4f8 100644 --- a/Mailman/Cgi/create.py +++ b/Mailman/Cgi/create.py @@ -71,7 +71,8 @@ def main(): def process_request(doc, cgidata): - listname = cgidata.getvalue('listname', '').strip() + # Lowercase the listname since this is treated as the "internal" name. + listname = cgidata.getvalue('listname', '').strip().lower() owner = cgidata.getvalue('owner', '').strip() try: autogen = int(cgidata.getvalue('autogen', '0')) |
