summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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))