diff options
author | tkikuchi <> | 2005-01-11 12:48:17 +0000 |
---|---|---|
committer | tkikuchi <> | 2005-01-11 12:48:17 +0000 |
commit | d67132fde1657204e6f2b9641c0922b0661b6213 (patch) | |
tree | ab862e6497ab1202ffe7e1be53a424eb549ee720 | |
parent | 37b79d5cbecb00b7d5c743c2fe96aaf2ea44bb6d (diff) | |
download | mailman2-d67132fde1657204e6f2b9641c0922b0661b6213.tar.gz mailman2-d67132fde1657204e6f2b9641c0922b0661b6213.tar.xz mailman2-d67132fde1657204e6f2b9641c0922b0661b6213.zip |
Sorry, leagality of '%' and '!' is a matter of MTA (of the user's).
Canceling last check in.
-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 d4319026..18b1c468 100644 --- a/Mailman/Utils.py +++ b/Mailman/Utils.py @@ -200,7 +200,7 @@ def LCDomain(addr): # TBD: what other characters should be disallowed? -_badchars = re.compile(r'[][()<>|;^,%!\000-\037\177-\377]') +_badchars = re.compile(r'[][()<>|;^,\000-\037\177-\377]') def ValidateEmail(s): """Verify that the an email address isn't grossly evil.""" |