File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -169,7 +169,7 @@ class SMTPInterface {
169
169
} ) ;
170
170
} ,
171
171
172
- onRcptTo ( address , session , callback ) {
172
+ onRcptTo : ( address , session , callback ) => {
173
173
if ( this . closing ) {
174
174
return callback ( new Error ( 'Server shutdown in progress' ) ) ;
175
175
}
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " zone-mta" ,
3
3
"private" : false ,
4
- "version" : " 3.4.0 " ,
4
+ "version" : " 3.4.1 " ,
5
5
"description" : " Tiny outbound MTA" ,
6
6
"main" : " app.js" ,
7
7
"scripts" : {
16
16
"crc-32" : " 1.2.2" ,
17
17
"dnscache" : " 1.0.2" ,
18
18
"gelf" : " 2.0.1" ,
19
- "ioredis" : " 5.0.6 " ,
19
+ "ioredis" : " 5.1.0 " ,
20
20
"isemail" : " 3.2.0" ,
21
21
"js-yaml" : " 4.1.0" ,
22
22
"libmime" : " 5.1.0" ,
25
25
"mongodb" : " 4.7.0" ,
26
26
"msgpack-js" : " 0.3.0" ,
27
27
"mx-connect" : " 1.2.0" ,
28
- "nodemailer" : " 6.7.5 " ,
28
+ "nodemailer" : " 6.7.6 " ,
29
29
"npmlog" : " 6.0.2" ,
30
30
"prom-client" : " 14.0.1" ,
31
31
"punycode" : " 2.1.1" ,
39
39
},
40
40
"devDependencies" : {
41
41
"ajv" : " 8.11.0" ,
42
- "eslint" : " 8.18 .0" ,
42
+ "eslint" : " 8.19 .0" ,
43
43
"eslint-config-nodemailer" : " 1.2.0" ,
44
44
"eslint-config-prettier" : " 8.5.0" ,
45
45
"grunt" : " 1.5.3" ,
Original file line number Diff line number Diff line change 3
3
const RspamdClient = require ( './rspamd-client' ) ;
4
4
5
5
module . exports . title = 'Rspamd Spam Check' ;
6
- module . exports . init = function ( app , done ) {
6
+ module . exports . init = function ( app , done ) {
7
7
app . addAnalyzerHook ( ( envelope , source , destination ) => {
8
8
let interfaces = Array . isArray ( app . config . interfaces ) ? app . config . interfaces : [ ] . concat ( app . config . interfaces || [ ] ) ;
9
9
if ( ! interfaces . includes ( envelope . interface ) && ! interfaces . includes ( '*' ) ) {
You can’t perform that action at this time.
0 commit comments