This commit is contained in:
Andris Reinman 2020-01-27 14:22:35 +02:00
parent 494095f6f1
commit b7ed286bf7
No known key found for this signature in database
GPG key ID: 5388A30A31834D83
3 changed files with 16 additions and 15 deletions

View file

@ -308,7 +308,7 @@ module.exports = {
} }
logdata._response = success; logdata._response = success;
// this._server.loggelf(logdata); this._server.loggelf(logdata);
callback(null, { callback(null, {
response: success === true ? 'OK' : 'NO', response: success === true ? 'OK' : 'NO',

View file

@ -725,7 +725,8 @@ class MessageHandler {
returnOriginal: false, returnOriginal: false,
projection: { projection: {
_id: true, _id: true,
uidNext: true uidNext: true,
modifyIndex: true
} }
}, },
(err, item) => { (err, item) => {

View file

@ -1,6 +1,6 @@
{ {
"name": "wildduck", "name": "wildduck",
"version": "1.23.1", "version": "1.23.2",
"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": {
@ -15,8 +15,8 @@
"author": "Andris Reinman", "author": "Andris Reinman",
"license": "EUPL-1.1+", "license": "EUPL-1.1+",
"devDependencies": { "devDependencies": {
"ajv": "6.10.2", "ajv": "6.11.0",
"apidoc": "0.19.1", "apidoc": "0.20.0",
"browserbox": "0.9.1", "browserbox": "0.9.1",
"chai": "4.2.0", "chai": "4.2.0",
"eslint": "6.8.0", "eslint": "6.8.0",
@ -29,7 +29,7 @@
"grunt-shell-spawn": "0.4.0", "grunt-shell-spawn": "0.4.0",
"grunt-wait": "0.3.0", "grunt-wait": "0.3.0",
"mailparser": "2.7.7", "mailparser": "2.7.7",
"mocha": "6.2.2", "mocha": "7.0.1",
"request": "2.88.0", "request": "2.88.0",
"supertest": "4.0.2" "supertest": "4.0.2"
}, },
@ -39,30 +39,30 @@
"base32.js": "0.1.0", "base32.js": "0.1.0",
"bcryptjs": "2.4.3", "bcryptjs": "2.4.3",
"gelf": "2.0.1", "gelf": "2.0.1",
"generate-password": "1.4.2", "generate-password": "1.5.0",
"he": "1.2.0", "he": "1.2.0",
"html-to-text": "5.1.1", "html-to-text": "5.1.1",
"humanname": "0.2.2", "humanname": "0.2.2",
"iconv-lite": "0.5.0", "iconv-lite": "0.5.1",
"ioredfour": "1.0.2-ioredis-02", "ioredfour": "1.0.2-ioredis-02",
"ioredis": "4.14.1", "ioredis": "4.14.1",
"isemail": "3.2.0", "isemail": "3.2.0",
"joi": "^14.3.1", "joi": "14.3.1",
"js-yaml": "3.13.1", "js-yaml": "3.13.1",
"key-fingerprint": "1.1.0", "key-fingerprint": "1.1.0",
"libbase64": "1.2.1", "libbase64": "1.2.1",
"libmime": "4.2.1", "libmime": "4.2.1",
"libqp": "1.1.0", "libqp": "1.1.0",
"mailsplit": "4.6.3", "mailsplit": "4.6.4",
"mobileconfig": "2.3.1", "mobileconfig": "2.3.1",
"mongo-cursor-pagination": "7.2.0", "mongo-cursor-pagination": "7.2.0",
"mongodb": "3.4.1", "mongodb": "3.5.2",
"mongodb-extended-json": "1.10.2", "mongodb-extended-json": "1.11.0",
"node-forge": "0.9.1", "node-forge": "0.9.1",
"nodemailer": "6.4.2", "nodemailer": "6.4.2",
"npmlog": "4.1.2", "npmlog": "4.1.2",
"openpgp": "4.7.2", "openpgp": "4.8.1",
"pem": "1.14.3", "pem": "1.14.4",
"pwnedpasswords": "1.0.5", "pwnedpasswords": "1.0.5",
"qrcode": "1.4.4", "qrcode": "1.4.4",
"restify": "8.5.1", "restify": "8.5.1",
@ -72,7 +72,7 @@
"speakeasy": "2.0.0", "speakeasy": "2.0.0",
"u2f": "0.1.3", "u2f": "0.1.3",
"utf7": "1.0.2", "utf7": "1.0.2",
"uuid": "3.3.3", "uuid": "3.4.0",
"wild-config": "1.5.0", "wild-config": "1.5.0",
"yargs": "15.1.0" "yargs": "15.1.0"
}, },