summaryrefslogtreecommitdiff
path: root/Mailman/Cgi/options.py
diff options
context:
space:
mode:
authorcotton1998-10-14 18:27:18 +0000
committercotton1998-10-14 18:27:18 +0000
commitf972d37d88b75332fb63a2998269eea1fe9f5088 (patch)
treee30e28a0e9c74fe59fe58a6398097ee68dff5533 /Mailman/Cgi/options.py
parent39e7e6d0a7166f1de85b4e6c70e059c555028086 (diff)
downloadmailman-f972d37d88b75332fb63a2998269eea1fe9f5088.tar.gz
mailman-f972d37d88b75332fb63a2998269eea1fe9f5088.tar.zst
mailman-f972d37d88b75332fb63a2998269eea1fe9f5088.zip
options cgi was still lowercasing user's inputted email address
instead of just the domain part. this was preventing some users with caps in their usernames from logging onto the options section scott
Diffstat (limited to 'Mailman/Cgi/options.py')
-rw-r--r--Mailman/Cgi/options.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Cgi/options.py b/Mailman/Cgi/options.py
index 79575a87f..9aade53d7 100644
--- a/Mailman/Cgi/options.py
+++ b/Mailman/Cgi/options.py
@@ -64,7 +64,7 @@ def main():
print doc.Format()
sys.exit(0)
- if string.lower(user) not in list.members + list.digest_members:
+ if Utils.LCDomain(user) not in list.members + list.digest_members:
doc.AddItem(htmlformat.Header(2, "Error"))
doc.AddItem(htmlformat.Bold("%s: No such member %s."
% (list_name, `user`)))