File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 2
2
### Unreleased
3
3
4
4
5
+ ### [ 1.2.3] - 2023-07-14
6
+
7
+ - fix: Handle DNS TXT array result (#15 )
8
+
9
+
5
10
### [ 1.2.2] - 2023-06-22
6
11
7
12
- fix: check for DNS results befor iterating, fixes #13
59
64
[ 1.2.0 ] : https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.0
60
65
[ 1.2.1 ] : https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.1
61
66
[ 1.3.0 ] : https://github.com/haraka/haraka-plugin-spf/releases/tag/1.3.0
67
+ [ 1.2.3 ] : https://github.com/haraka/haraka-plugin-spf/releases/tag/1.2.3
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " haraka-plugin-spf" ,
3
- "version" : " 1.2.2 " ,
3
+ "version" : " 1.2.3 " ,
4
4
"description" : " Sender Policy Framework (SPF) plugin for Haraka" ,
5
5
"main" : " index.js" ,
6
6
"scripts" : {
27
27
"devDependencies" : {
28
28
"eslint" : " ^8.42.0" ,
29
29
"eslint-plugin-haraka" : " *" ,
30
- "haraka-test-fixtures" : " * " ,
31
- "mocha" : " ^9.2.0 "
30
+ "haraka-test-fixtures" : " ^1.3.0 " ,
31
+ "mocha" : " ^9.2.2 "
32
32
},
33
33
"bin" : {
34
34
"spf" : " ./bin/spf"
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ describe('hook_helo', function () {
162
162
} )
163
163
164
164
it ( 'MX with no A record' , function ( done ) {
165
+ this . timeout ( 5000 )
165
166
this . connection . set ( 'remote.ip' , '192.0.2.0' ) ;
166
167
this . plugin . helo_spf ( function next ( rc ) {
167
168
assert . equal ( undefined , rc ) ;
@@ -236,7 +237,7 @@ describe('hook_mail', function () {
236
237
} )
237
238
238
239
it ( 'txn, relaying, is_private' , function ( done ) {
239
- this . timeout ( 6000 )
240
+ this . timeout ( 8000 )
240
241
this . plugin . cfg . relay . context = 'myself' ;
241
242
this . plugin . cfg . deny_relay . mfrom_fail = true ;
242
243
this . connection . set ( 'remote.ip' , '127.0.1.1' ) ;
You can’t perform that action at this time.
0 commit comments