mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-10-06 20:05:58 +08:00
v1.9.1
This commit is contained in:
parent
61d2813be9
commit
d988c816fe
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
Loading…
Add table
Reference in a new issue