mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-03-02 02:45:40 +08:00
v1.0.116
This commit is contained in:
parent
3bc95d645b
commit
0b164d0b89
2 changed files with 6 additions and 6 deletions
|
@ -416,19 +416,19 @@ class FilterHandler {
|
|||
},
|
||||
(err, autoreplyData) => {
|
||||
if (err) {
|
||||
return callback(err);
|
||||
return done(err);
|
||||
}
|
||||
|
||||
if (!autoreplyData || !autoreplyData.status) {
|
||||
return callback(null, false);
|
||||
return done(null, false);
|
||||
}
|
||||
|
||||
if (autoreplyData.start && autoreplyData.start > curtime) {
|
||||
return callback(null, false);
|
||||
return done(null, false);
|
||||
}
|
||||
|
||||
if (autoreplyData.end && autoreplyData.end < curtime) {
|
||||
return callback(null, false);
|
||||
return done(null, false);
|
||||
}
|
||||
|
||||
autoreply(
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "wildduck",
|
||||
"version": "1.0.115",
|
||||
"version": "1.0.116",
|
||||
"description": "IMAP/POP3 server built with Node.js and MongoDB",
|
||||
"main": "server.js",
|
||||
"scripts": {
|
||||
|
@ -25,7 +25,7 @@
|
|||
"icedfrisby": "^1.5.0",
|
||||
"mailparser": "^2.2.0",
|
||||
"markdown-toc": "^1.2.0",
|
||||
"mocha": "^5.0.0",
|
||||
"mocha": "^5.0.1",
|
||||
"request": "^2.83.0"
|
||||
},
|
||||
"dependencies": {
|
||||
|
|
Loading…
Reference in a new issue