X-Git-Url: https://git.adam-barratt.org.uk/?a=blobdiff_plain;f=ud-mailgate;h=fd70c37e567a0350b86266e5d843316f4b22fa44;hb=909d6ff40bb42d938db9c0db038d06382c743f3a;hp=b23e8a520d58d4bffbc4ac04c3bc36c97460a88c;hpb=1fba345532896a49d61b365dbbe5fa52135f2ab3;p=mirror%2Fuserdir-ldap.git diff --git a/ud-mailgate b/ud-mailgate index b23e8a5..fd70c37 100755 --- a/ud-mailgate +++ b/ud-mailgate @@ -297,7 +297,7 @@ def DoSSH(Str, Attrs, badkeys, uid): if not machine_regex.match(m): return "machine specification for ssh key contains invalid characters" if m not in ValidHostNames: - return "unknown machine used in allowed_hosts stanza for ssh keys" + return "unknown machine {} used in allowed_hosts stanza for ssh keys".format(m) (fd, path) = tempfile.mkstemp(".pub", "sshkeytry", "/tmp") f = open(path, "w") @@ -372,7 +372,7 @@ def DoDNS(Str,Attrs,DnRecord): cnamerecord = re.match("^[-\w]+\s+IN\s+CNAME\s+([-\w.]+\.)$",Str,re.IGNORECASE) arecord = re.match('^[-\w]+\s+IN\s+A\s+(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$',Str,re.IGNORECASE) mxrecord = re.match("^[-\w]+\s+IN\s+MX\s+(\d{1,3})\s+([-\w.]+\.)$",Str,re.IGNORECASE) - txtrecord = re.match("^[-\w]+\s+IN\s+TXT\s+([-\d. a-z\t<>@]+)", Str, re.IGNORECASE) + txtrecord = re.match("^[-\w]+\s+IN\s+TXT\s+([-\d. a-z\t<>@:]+)", Str, re.IGNORECASE) #aaaarecord = re.match('^[-\w]+\s+IN\s+AAAA\s+((?:[0-9a-f]{1,4})(?::[0-9a-f]{1,4})*(?::(?:(?::[0-9a-f]{1,4})*|:))?)$',Str,re.IGNORECASE) aaaarecord = re.match('^[-\w]+\s+IN\s+AAAA\s+([A-F0-9:]{2,39})$',Str,re.IGNORECASE)