mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add missing IMAP_CMD_POLL flag in imap buffy check.

I missed adding the flag to one of the imap_exec() calls inside the
loop, when a different server is encountered in the mailboxes list.

+1 -1
+1 -1
imap/imap.c
··· 1619 1619 { 1620 1620 /* Send commands to previous server. Sorting the buffy list 1621 1621 * may prevent some infelicitous interleavings */ 1622 - if (imap_exec (lastdata, NULL, IMAP_CMD_FAIL_OK) == -1) 1622 + if (imap_exec (lastdata, NULL, IMAP_CMD_FAIL_OK | IMAP_CMD_POLL) == -1) 1623 1623 dprint (1, (debugfile, "Error polling mailboxes\n")); 1624 1624 1625 1625 lastdata = NULL;