summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbwarsaw2000-11-10 17:56:55 +0000
committerbwarsaw2000-11-10 17:56:55 +0000
commit924bbf7da199e0ceee121fbfe612405965e4b55e (patch)
treeb74fecd6b0ad7a0a0895dbcd78f2d18324d389e3
parentcbd6e3f1b7ca5aa618c6fe7cd3149c1a099583c6 (diff)
downloadmailman-924bbf7da199e0ceee121fbfe612405965e4b55e.tar.gz
mailman-924bbf7da199e0ceee121fbfe612405965e4b55e.tar.zst
mailman-924bbf7da199e0ceee121fbfe612405965e4b55e.zip
-rw-r--r--Mailman/MailList.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/Mailman/MailList.py b/Mailman/MailList.py
index ca390101f..d9f9ab93d 100644
--- a/Mailman/MailList.py
+++ b/Mailman/MailList.py
@@ -1216,7 +1216,8 @@ it will not be changed."""),
localpart = string.split(addr, '@')[0]
if (# TBD: backwards compatibility: deprecated
localpart == self.internal_name() or
- # exact match against the complete list address
+ # Exact match against the complete list address. TBD:
+ # this test should be case-insensitive.
addr == listfullname):
return 1
recips.append((addr, localpart))