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

View file

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