summaryrefslogtreecommitdiff
path: root/Mailman/Utils.py
diff options
context:
space:
mode:
authorbwarsaw1999-03-23 16:57:13 +0000
committerbwarsaw1999-03-23 16:57:13 +0000
commit078b105a7d8397c4a053d7a9a55e6580dfe2e0d9 (patch)
treebeb8d603a7c9e10df1bd77ccc74434156db7c159 /Mailman/Utils.py
parentde753de0cb270bbc04dedc990961856ace25b290 (diff)
downloadmailman-078b105a7d8397c4a053d7a9a55e6580dfe2e0d9.tar.gz
mailman-078b105a7d8397c4a053d7a9a55e6580dfe2e0d9.tar.zst
mailman-078b105a7d8397c4a053d7a9a55e6580dfe2e0d9.zip
Add ^ to the list of _badchars in email addresses
Diffstat (limited to '')
-rw-r--r--Mailman/Utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py
index a1a4ee724..a2e38b919 100644
--- a/Mailman/Utils.py
+++ b/Mailman/Utils.py
@@ -234,7 +234,7 @@ def QuotePeriods(text):
# TBD: what other characters should be disallowed?
-_badchars = re.compile('[][()<>|;]')
+_badchars = re.compile('[][()<>|;^]')
def ValidateEmail(str):
"""Verify that the an email address isn't grossly invalid."""