Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 08a13fea9e | |||
| 52c7ee02af |
@@ -1,7 +1,8 @@
|
|||||||
1.2.2
|
1.2.2 2020-08-09
|
||||||
- Improve README.md formating for markdown display on pypi
|
- Improve README.md formating for markdown display on pypi
|
||||||
- Improve documentation in dkimpy-milter.conf (5) and README.md for signing
|
- Improve documentation in dkimpy-milter.conf (5) and README.md for signing
|
||||||
for multiple domains (Thanks to Stefano Rivera)
|
for multiple domains (Thanks to Stefano Rivera)
|
||||||
|
- Minimal fix for dnspython 2.0.0 compatibility (still works with 1.16.0)
|
||||||
|
|
||||||
1.2.1 2020-01-04
|
1.2.1 2020-01-04
|
||||||
- Fix expand option not to fail if files are missing since socket activation
|
- Fix expand option not to fail if files are missing since socket activation
|
||||||
|
|||||||
@@ -127,7 +127,7 @@ def DNSLookup_dnspython(name,qtype,tcpfallback=True,timeout=5):
|
|||||||
elif qtype == 'PTR':
|
elif qtype == 'PTR':
|
||||||
retVal.append(((name, qtype), rdata.target.to_text(True)))
|
retVal.append(((name, qtype), rdata.target.to_text(True)))
|
||||||
elif qtype == 'TXT' or qtype == 'SPF':
|
elif qtype == 'TXT' or qtype == 'SPF':
|
||||||
retVal.append(((name, qtype), rdata.strings))
|
retVal.append(((name, qtype), list(rdata.strings)))
|
||||||
except dns.resolver.NoAnswer:
|
except dns.resolver.NoAnswer:
|
||||||
pass
|
pass
|
||||||
except dns.resolver.NXDOMAIN:
|
except dns.resolver.NXDOMAIN:
|
||||||
|
|||||||
@@ -89,7 +89,7 @@ except ImportError: # If PyDNS is not installed, prefer dnspython
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='dkimpy-milter',
|
name='dkimpy-milter',
|
||||||
version='1.2.1',
|
version='1.2.2',
|
||||||
author='Scott Kitterman',
|
author='Scott Kitterman',
|
||||||
author_email='scott@kitterman.com',
|
author_email='scott@kitterman.com',
|
||||||
url='https://launchpad.net/dkimpy-milter',
|
url='https://launchpad.net/dkimpy-milter',
|
||||||
|
|||||||
Reference in New Issue
Block a user