This commit is contained in:
Andris Reinman 2018-08-06 10:36:29 +03:00
parent e63e0af166
commit c7da95e5cb
2 changed files with 3 additions and 2 deletions

View file

@ -234,6 +234,7 @@ module.exports = (db, server, messageHandler) => {
_id: true, _id: true,
uid: true, uid: true,
msgid: true, msgid: true,
mailbox: true,
'meta.from': true, 'meta.from': true,
hdate: true, hdate: true,
subject: true, subject: true,
@ -2483,9 +2484,9 @@ module.exports = (db, server, messageHandler) => {
// FIXME: MongoPaging inserts fields value as second argument to col.find() // FIXME: MongoPaging inserts fields value as second argument to col.find()
projection: { projection: {
_id: true, _id: true,
mailbox: true,
uid: true, uid: true,
msgid: true, msgid: true,
mailbox: true,
'meta.from': true, 'meta.from': true,
hdate: true, hdate: true,
subject: true, subject: true,

View file

@ -1,6 +1,6 @@
{ {
"name": "wildduck", "name": "wildduck",
"version": "1.2.5", "version": "1.3.0",
"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": {