diff options
Diffstat (limited to '')
-rw-r--r-- | Mailman/Utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mailman/Utils.py b/Mailman/Utils.py index 92262684..57c87c36 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -192,7 +192,7 @@ def LCDomain(addr): # TBD: what other characters should be disallowed? -_badchars = re.compile('[][()<>|;^,/]') +_badchars = re.compile(r'[][()<>|;^,/\200-\377]') def ValidateEmail(s): """Verify that the an email address isn't grossly evil.""" |