Skip to content

Commit 5121f8b

Browse files
committed
Release version 1.4.1
1 parent 76e9e2d commit 5121f8b

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

Diff for: CHANGELOG.txt

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
1.4.1 [2016-02-13]
2+
------------------
3+
- fixed incompatibility with Thunderbird 46
4+
- Authentication-Results header: fixed trusting all authentication servers
5+
16
1.4.0 [2016-02-08]
27
------------------
38
- simplified shown error reasons and added advanced option for detailed reasons

Diff for: install.rdf

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<Description about="urn:mozilla:install-manifest">
77
<em:id>dkim_verifier@pl</em:id>
88
<em:type>2</em:type> <!-- Extensions -->
9-
<em:version>1.4.0</em:version>
9+
<em:version>1.4.1</em:version>
1010

1111
<em:name>DKIM Verifier</em:name>
1212
<em:description>Verifies the DKIM-Signature of an e-mail.</em:description>

Diff for: modules/JSDNS.jsm

+6-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Based on Joshua Tauberer's DNS LIBRARY IN JAVASCRIPT
55
* from "Sender Verification Extension" version 0.9.0.6
66
*
7-
* Version: 1.1.0 (16 November 2015)
7+
* Version: 1.1.1 (13 February 2016)
88
*
9-
* Copyright (c) 2013-2015 Philippe Lieser
9+
* Copyright (c) 2013-2016 Philippe Lieser
1010
*
1111
* This software is licensed under the terms of the MIT License.
1212
*
@@ -55,6 +55,10 @@
5555
* Changelog:
5656
* ==========
5757
*
58+
* 1.1.1
59+
* -----
60+
* - fixed incompatibility with Gecko 46
61+
*
5862
* 1.1.0
5963
* -----
6064
* - no longer get the DNS servers from deactivated interfaces under windows

Diff for: modules/dkimVerifier.jsm

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
* Verifies the DKIM-Signatures as specified in RFC 6376
55
* http://tools.ietf.org/html/rfc6376
66
*
7-
* Version: 2.1.0 (08 July 2015)
7+
* Version: 2.1.1 (13 February 2016)
88
*
9-
* Copyright (c) 2013-2015 Philippe Lieser
9+
* Copyright (c) 2013-2016 Philippe Lieser
1010
*
1111
* This software is licensed under the terms of the MIT License.
1212
*
@@ -31,7 +31,7 @@
3131
/* global dkimStrings, addrIsInDomain2, domainIsInDomain, exceptionToStr, stringEndsWith, stringEqual, writeStringToTmpFile, DKIM_SigError, DKIM_InternalError */
3232
/* exported EXPORTED_SYMBOLS, Verifier */
3333

34-
const module_version = "2.1.0";
34+
const module_version = "2.1.1";
3535

3636
var EXPORTED_SYMBOLS = [
3737
"Verifier"

Diff for: modules/helper.jsm

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
/*
22
* helper.jsm
33
*
4-
* Version: 1.4.0 (21 March 2015)
4+
* Version: 1.4.1 (13 February 2016)
55
*
6-
* Copyright (c) 2013-2015 Philippe Lieser
6+
* Copyright (c) 2013-2016 Philippe Lieser
77
*
88
* This software is licensed under the terms of the MIT License.
99
*

0 commit comments

Comments
 (0)