diff options
author | tkikuchi <> | 2004-10-09 04:15:41 +0000 |
---|---|---|
committer | tkikuchi <> | 2004-10-09 04:15:41 +0000 |
commit | 6b02d74dfcfd74994f14dd89b79cfd62a394c788 (patch) | |
tree | 9382ef79d0257e831a06526867528ba336f1fe06 /Mailman/Utils.py | |
parent | c4a3e8e0b833d51da0d5e1b19a3eab0d3805ec5d (diff) | |
download | mailman2-6b02d74dfcfd74994f14dd89b79cfd62a394c788.tar.gz mailman2-6b02d74dfcfd74994f14dd89b79cfd62a394c788.tar.xz mailman2-6b02d74dfcfd74994f14dd89b79cfd62a394c788.zip |
[ 1030228 ] Mass Subscribe address with control character - can't delete
Also, '/' can be used now.
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 dda90354..03575998 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -199,7 +199,7 @@ def LCDomain(addr): # TBD: what other characters should be disallowed? -_badchars = re.compile(r'[][()<>|;^,/\200-\377]') +_badchars = re.compile(r'[][()<>|;^,\000-\037\177-\377]') def ValidateEmail(s): """Verify that the an email address isn't grossly evil.""" |