to check for UNSEEN rather than RECENT messages. This means that as
long as there are messages in a mailbox either new or old, mutt will
think it has new mail.
The attached patch reverts that change. Let me know if it solves the
problem.
mutt_bit_isset(idata->capabilities,STATUS))
{
snprintf (buf, sizeof (buf), "STATUS %s (%s)", mbox,
- new ? "UNSEEN" : "MESSAGES");
+ new ? "RECENT" : "MESSAGES");
}
else
/* Server does not support STATUS, and this is not the current mailbox.