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