fix domain name regex to allow - and not allow _
authorrmurray <>
Thu, 28 Dec 2006 21:09:15 +0000 (21:09 +0000)
committerrmurray <>
Thu, 28 Dec 2006 21:09:15 +0000 (21:09 +0000)
ud-mailgate

index eb48d60..9907222 100755 (executable)
@@ -251,7 +251,7 @@ def DoDNS(Str,Attrs,DnRecord):
 
 # Handle an RBL list (mailRBL, mailRHSBL, mailWhitelist)
 def DoRBL(Str,Attrs):
-   Match = re.compile('^mail(rbl|rhsbl|whitelist) ([\w.]+)$').match(string.lower(Str))
+   Match = re.compile('^mail(rbl|rhsbl|whitelist) ([-a-z0-9.]+)$').match(string.lower(Str))
    if Match == None:
       return None