This commit is contained in:
Andris Reinman 2018-10-22 21:37:24 +03:00
parent 61d2813be9
commit d988c816fe
2 changed files with 2 additions and 2 deletions

View file

@ -383,7 +383,7 @@ class FilterHandler {
let sendAutoreply = done => { let sendAutoreply = done => {
// never reply to messages marked as spam // never reply to messages marked as spam
if (!sender || !userData.autoreply || filterActions.get('spam')) { if (!sender || !userData.autoreply || filterActions.get('spam') || options.disableAutoreply) {
return setImmediate(done); return setImmediate(done);
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "wildduck", "name": "wildduck",
"version": "1.9.0", "version": "1.9.1",
"description": "IMAP/POP3 server built with Node.js and MongoDB", "description": "IMAP/POP3 server built with Node.js and MongoDB",
"main": "server.js", "main": "server.js",
"scripts": { "scripts": {