mirror of
https://github.com/nodemailer/wildduck.git
synced 2025-01-28 10:47:45 +08:00
v1.0.101
This commit is contained in:
parent
98247a6f5b
commit
6fb85d597f
2 changed files with 9 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
@ -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": {
|
||||
|
|
Loading…
Reference in a new issue