- Fixed a bug where dkim fail might be reported as pass when verifying
multiple signatures and a previous signature had passed
This commit is contained in:
@@ -5,6 +5,8 @@
|
|||||||
requirements
|
requirements
|
||||||
- Added information about creating a dedicated user and PID file directory
|
- Added information about creating a dedicated user and PID file directory
|
||||||
creation to README
|
creation to README
|
||||||
|
- Fixed a bug where dkim fail might be reported as pass when verifying
|
||||||
|
multiple signatures and a previous signature had passed
|
||||||
|
|
||||||
0.9.3 2018-03-02
|
0.9.3 2018-03-02
|
||||||
- Fixup csl dataset processing for single item lists
|
- Fixup csl dataset processing for single item lists
|
||||||
|
|||||||
@@ -250,6 +250,7 @@ class dkimMilter(Milter.Base):
|
|||||||
result = 'pass'
|
result = 'pass'
|
||||||
else:
|
else:
|
||||||
result = 'fail'
|
result = 'fail'
|
||||||
|
res = False
|
||||||
self.arresults.append(
|
self.arresults.append(
|
||||||
authres.DKIMAuthenticationResult(result=result,
|
authres.DKIMAuthenticationResult(result=result,
|
||||||
header_i = self.header_i, header_d = self.header_d, header_a = self.header_a,
|
header_i = self.header_i, header_d = self.header_d, header_a = self.header_a,
|
||||||
|
|||||||
Reference in New Issue
Block a user