From: Brendan Cully Date: Thu, 10 Aug 2006 04:57:28 +0000 (+0000) Subject: Notes sometimes sends EXISTS messages for the wrong mailbox. X-Git-Tag: mutt-1-5-13-rel~24 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=793da1ca8789ccbc1f8d433470c5967cf3e0d3ec;p=mutt Notes sometimes sends EXISTS messages for the wrong mailbox. --- diff --git a/imap/command.c b/imap/command.c index f3fbb071..59a2b4d6 100644 --- a/imap/command.c +++ b/imap/command.c @@ -386,12 +386,10 @@ static int cmd_handle_untagged (IMAP_DATA* idata) if ( !(idata->reopen & IMAP_EXPUNGE_PENDING) && count < idata->ctx->msgcount) { - /* something is wrong because the server reported fewer messages - * than we previously saw - */ - mutt_error _("Fatal error. Message count is out of sync!"); - idata->status = IMAP_FATAL; - return -1; + /* Notes 6.0.3 has a tendency to report fewer messages exist than + * it should. */ + dprint (1, (debugfile, "Message count is out of sync")); + return 0; } /* at least the InterChange server sends EXISTS messages freely, * even when there is no new mail */