From 793da1ca8789ccbc1f8d433470c5967cf3e0d3ec Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Thu, 10 Aug 2006 04:57:28 +0000 Subject: [PATCH] Notes sometimes sends EXISTS messages for the wrong mailbox. --- imap/command.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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 */ -- 2.40.0