mirror of
https://github.com/nodemailer/wildduck.git
synced 2024-12-28 19:24:32 +08:00
bumped deps
This commit is contained in:
parent
1f4e97dbe9
commit
718dad91c5
2 changed files with 35 additions and 26 deletions
|
@ -49,13 +49,19 @@ class POP3Server extends EventEmitter {
|
||||||
// ignore, should not happen
|
// ignore, should not happen
|
||||||
}
|
}
|
||||||
if (this.options.secured) {
|
if (this.options.secured) {
|
||||||
return this.connect(socket, socketOptions);
|
return this.connect(
|
||||||
|
socket,
|
||||||
|
socketOptions
|
||||||
|
);
|
||||||
}
|
}
|
||||||
this._upgrade(socket, (err, tlsSocket) => {
|
this._upgrade(socket, (err, tlsSocket) => {
|
||||||
if (err) {
|
if (err) {
|
||||||
return this._onError(err);
|
return this._onError(err);
|
||||||
}
|
}
|
||||||
this.connect(tlsSocket, socketOptions);
|
this.connect(
|
||||||
|
tlsSocket,
|
||||||
|
socketOptions
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -65,7 +71,10 @@ class POP3Server extends EventEmitter {
|
||||||
if (err) {
|
if (err) {
|
||||||
// ignore, should not happen
|
// ignore, should not happen
|
||||||
}
|
}
|
||||||
this.connect(socket, socketOptions);
|
this.connect(
|
||||||
|
socket,
|
||||||
|
socketOptions
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
46
package.json
46
package.json
|
@ -16,21 +16,21 @@
|
||||||
"author": "Andris Reinman",
|
"author": "Andris Reinman",
|
||||||
"license": "EUPL-1.1+",
|
"license": "EUPL-1.1+",
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"apidoc": "^0.17.6",
|
"apidoc": "0.17.6",
|
||||||
"browserbox": "^0.9.1",
|
"browserbox": "0.9.1",
|
||||||
"chai": "^4.1.2",
|
"chai": "4.1.2",
|
||||||
"eslint-config-nodemailer": "^1.2.0",
|
"eslint-config-nodemailer": "1.2.0",
|
||||||
"grunt": "^1.0.3",
|
"grunt": "1.0.3",
|
||||||
"grunt-cli": "^1.2.0",
|
"grunt-cli": "1.2.0",
|
||||||
"grunt-eslint": "^21.0.0",
|
"grunt-eslint": "21.0.0",
|
||||||
"grunt-mocha-test": "^0.13.3",
|
"grunt-mocha-test": "0.13.3",
|
||||||
"grunt-shell-spawn": "^0.3.10",
|
"grunt-shell-spawn": "0.3.10",
|
||||||
"grunt-wait": "^0.1.0",
|
"grunt-wait": "0.1.0",
|
||||||
"icedfrisby": "^1.5.0",
|
"icedfrisby": "1.5.0",
|
||||||
"mailparser": "^2.2.0",
|
"mailparser": "2.3.2",
|
||||||
"markdown-toc": "^1.2.0",
|
"markdown-toc": "1.2.0",
|
||||||
"mocha": "^5.2.0",
|
"mocha": "5.2.0",
|
||||||
"request": "^2.87.0"
|
"request": "2.87.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"bcryptjs": "2.4.3",
|
"bcryptjs": "2.4.3",
|
||||||
|
@ -43,24 +43,24 @@
|
||||||
"iconv-lite": "0.4.23",
|
"iconv-lite": "0.4.23",
|
||||||
"ioredfour": "1.0.2-ioredis",
|
"ioredfour": "1.0.2-ioredis",
|
||||||
"ioredis": "3.2.2",
|
"ioredis": "3.2.2",
|
||||||
"isemail": "^3.1.2",
|
"isemail": "3.1.3",
|
||||||
"joi": "13.4.0",
|
"joi": "13.4.0",
|
||||||
"js-yaml": "3.12.0",
|
"js-yaml": "3.12.0",
|
||||||
"key-fingerprint": "1.1.0",
|
"key-fingerprint": "1.1.0",
|
||||||
"libbase64": "1.0.2",
|
"libbase64": "1.0.3",
|
||||||
"libmime": "4.0.0",
|
"libmime": "4.0.1",
|
||||||
"libqp": "1.1.0",
|
"libqp": "1.1.0",
|
||||||
"linkify-it": "2.0.3",
|
"linkify-it": "2.0.3",
|
||||||
"mailsplit": "4.2.0",
|
"mailsplit": "4.2.3",
|
||||||
"mobileconfig": "2.1.0",
|
"mobileconfig": "2.1.0",
|
||||||
"mongo-cursor-pagination-node6": "5.0.0",
|
"mongo-cursor-pagination-node6": "5.0.0",
|
||||||
"mongodb": "3.0.10",
|
"mongodb": "3.1.1",
|
||||||
"mongodb-extended-json": "1.10.0",
|
"mongodb-extended-json": "1.10.0",
|
||||||
"node-forge": "0.7.5",
|
"node-forge": "0.7.5",
|
||||||
"nodemailer": "4.6.7",
|
"nodemailer": "4.6.7",
|
||||||
"npmlog": "4.1.2",
|
"npmlog": "4.1.2",
|
||||||
"openpgp": "3.0.11",
|
"openpgp": "3.1.0",
|
||||||
"pem": "^1.12.5",
|
"pem": "1.12.5",
|
||||||
"qrcode": "1.2.0",
|
"qrcode": "1.2.0",
|
||||||
"restify": "7.2.1",
|
"restify": "7.2.1",
|
||||||
"restify-logger": "2.0.1",
|
"restify-logger": "2.0.1",
|
||||||
|
@ -70,7 +70,7 @@
|
||||||
"tlds": "1.203.1",
|
"tlds": "1.203.1",
|
||||||
"u2f": "0.1.3",
|
"u2f": "0.1.3",
|
||||||
"utf7": "1.0.2",
|
"utf7": "1.0.2",
|
||||||
"uuid": "3.3.0",
|
"uuid": "3.3.2",
|
||||||
"wild-config": "1.3.6"
|
"wild-config": "1.3.6"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
|
|
Loading…
Reference in a new issue