From 2d5f15b2822ec5241cdf3a61ab578ae12e530647 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?A=CC=82ngela=20Igreja?= Date: Sat, 15 Mar 2014 14:51:58 +0000 Subject: [PATCH] Fixed imap.status not returning with UIDNEXT. --- lib/Connection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Connection.js b/lib/Connection.js index 9a64e74..613d8cc 100644 --- a/lib/Connection.js +++ b/lib/Connection.js @@ -477,7 +477,7 @@ Connection.prototype.status = function(boxName, cb) { boxName = escape(utf7.encode(''+boxName)); - var info = [ 'MESSAGES', 'RECENT', 'UNSEEN', 'UIDVALIDITY' ]; + var info = [ 'MESSAGES', 'RECENT', 'UNSEEN', 'UIDVALIDITY', 'UIDNEXT' ]; if (this.serverSupports('CONDSTORE')) info.push('HIGHESTMODSEQ');