This commit is contained in:
Andris Reinman 2017-12-27 15:45:52 +02:00
parent 98247a6f5b
commit 6fb85d597f
2 changed files with 9 additions and 3 deletions

View file

@ -80,7 +80,8 @@ class Maildropper {
mx: relayData.mx,
mxPort: relayData.mxPort,
mxAuth: relayData.mxAuth,
mxSecure: relayData.mxSecure
mxSecure: relayData.mxSecure,
skipSRS: true
});
});
break;
@ -93,7 +94,8 @@ class Maildropper {
deliveries.push({
to,
http: true,
targetUrl: target.value
targetUrl: target.value,
skipSRS: true
});
});
break;
@ -185,6 +187,10 @@ class Maildropper {
}
});
if (recipient.skipSRS) {
delivery.skipSRS = true;
}
documents.push(delivery);
}

View file

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