pydns driver did not join split TXT records. Try for Milter.dns which

follows CNAME (is this needed?)
This commit is contained in:
Stuart D. Gathman
2011-06-14 16:40:16 -04:00
parent 70c5b55dbf
commit 47fbf5a02b
2 changed files with 18 additions and 6 deletions
+1 -1
View File
@@ -348,7 +348,7 @@ class DKIM(object):
try:
pk = parse_public_key(base64.b64decode(pub[b'p']))
except (TypeError,UnparsableKeyError) as e:
raise KeyFormatError("could not parse public key: %s" % e)
raise KeyFormatError("could not parse public key (%s): %s" % (pub[b'p'],e))
include_headers = re.split(br"\s*:\s*", sig[b'h'])
h = hasher()