I'm using git commit ee919359 (so 0.7), but I had this same error before I updated. To be precise, I updated to see if latest git had the same issue: “The IMAP server sent us a reply which we could not parse. This might either mean that there's a bug in Trojitá's code, or that the IMAP server you are connected to is broken. Please report this as a bug anyway. Here are the details: MailboxException: FETCH response: UID consistency error for message #10 -- expected UID 1386, got UID 1635 FETCH 10 ( FLAGS "\Seen prive $ATTACHMENT" MODSEQ "8474" UID "1635")” I checked with the imapclient Python library (does not use condstore/qresync AFAIK), and message 10 has uid 1635. There is no message with uid 1386 (any more). I looked at Trojita's cache with an sqlite-browser and saw that there indeed uid 1386 was still present. The bug issue shows itself when accessing a specific mailbox. (I use this account a lot, so I cannot keep its state stable, which may hamper diagnosis.) Other MUA's such as KMail an Thunderbird have no problem accessing the mailbox. So either Trojita has a bug somewhere (related to its offline cache?), or the server (Dovecot) has a bug when enabling condstore/qresync or some other extension that may be relevant. I guess that clearing the cache will fix this concrete issue for me, but I'll hold off from doing that for a moment (I can use another MUA). Given that the problematic mailbox cannot be updated with this issue unresolved, I'm marking this as ‘Grave’. Reproducible: Always
This is indeed serious, but what the error message says is just a result of some other error -- exactly as your analysis suggested. Have you manipulated either the Dovecot's on-disk data or Trojita's cache by any chance? In other words, was there ever anything but Trojita writing to Trojita's sqlite cache, and anything but Dovecot touching anything in your IMAP server's mail store? If none of that happened, then there's indeed a bug in either Trojita or Dovecot, but at this point I'm unsure if we can get to know an actual root cause :(. Could you please send me a dump of the sync state as stored in the sqlite file (dumping the SyncState in I guess ObtainSynchronizedMailboxTask, or just a binary dump of the DB), the list of UIDs stored in the uid_mapping table in the DB, and a full debug log of the attempted sync from within Trojita?
(In reply to Jan Kundrát from comment #1) > In other words, was there ever anything but Trojita writing to > Trojita's sqlite cache, No. I may have browsed the sqlite file, but that was in read-only mode and I'm quite sure that I accessed the mailbox in question since then. > and anything but Dovecot touching anything in your > IMAP server's mail store? Well, this is not my server, I just have an account there. So a definite no from my end, and an assumed no for the other side. > Could you please send me a dump of the sync state as stored in the sqlite > file (dumping the SyncState in I guess ObtainSynchronizedMailboxTask, or > just a binary dump of the DB), the list of UIDs stored in the uid_mapping > table in the DB, and a full debug log of the attempted sync from within > Trojita? Ok, I'll do that in a private mail.
> Well, this is not my server, I just have an account there. So a definite no > from my end, and an assumed no for the other side. OK, let's assume that they would have informed you if they, e.g., recovered from a little bit outdated backup. Do you know what Dovecot version they run? IMAP -> Debugging -> IMAP Server Information... might help in case they modified the default settings of not specifying the version info. > Ok, I'll do that in a private mail. This is what Trojita has cached for its UID map: (781, 1163, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1386, 1387, 1520, 1572, 1598, 1601, 1602, 1605, 1606) And SyncState has the following: UIDVALIDITY 1370200160 UIDNEXT 1607 EXISTS 18 HIGHESTMODSEQ 8340 The IMAP log says that: > y4 SELECT INBOX (QRESYNC (1370200160 8340 (10,15,18 1386,1601,1606))) < ... < * 11 EXISTS < * 0 RECENT < * OK [UIDVALIDITY 1370200160] UIDs valid < * OK [UIDNEXT 1645] Predicted next UID < * OK [HIGHESTMODSEQ 8517] Highest < * VANISHED (EARLIER) 1520,1629:1634,1636:1638,1640:1644 < * 10 FETCH (MODSEQ (8474) UID 1635 ...) < * 11 FETCH (MODSEQ (8509) UID 1639 ...) > ... Trojita is telling the IMAP server that message #10 (counting starts from 1, not 0) has UID 1386. Dovecot says that the oldest removed message had UID 1520, but that's > 1386, which means that first 10 messages must have remained unchanged. Trojita detects this error and disconnects. There are two possibilities: a) There's a grave bug in Trojita which caused UID mapping and HIGHESTMODSEQ to come out-of-sync. b) There's a bug in (your version of) Dovecot doing essentially the same. It also looks as if Dovecot was not looking at the client-provided list of known seq-UIDs and taking a shortcut through HIGHESTMODSEQ in this case.
(In reply to Jan Kundrát from comment #3) > Do you know what Dovecot version they run? IMAP -> Debugging -> IMAP Server > Information... might help in case they modified the default settings of not > specifying the version info. No version info. > It also looks as if Dovecot was not looking at the client-provided list of > known seq-UIDs and taking a shortcut through HIGHESTMODSEQ in this case. Well, my reading of https://tools.ietf.org/html/rfc7162#section-3.2.10.1 would lead me to conclude that it doesn't have to, as it only needs to look at the UID set parameter, which Trojita doesn't pass. (I may be mistaken.) Perhaps Trojita would be more robust if the UID set were passed, but there may be reasons for not doing that (long lists?).
The server's idea of UIDs is this: [781, 1163, 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1635, 1639] IOW, the first 9 messages remain unchanged, all others are gone, and two more are added. The server apeears to be Dovecot 2.1.x (it's got SPECIAL-USE but not BINARY). > Well, my reading of > https://tools.ietf.org/html/rfc7162#section-3.2.10.1 would > lead me to conclude that it doesn't have to, as it only needs to look at the > UID set parameter, which Trojita doesn't pass. I think that you're confusing https://tools.ietf.org/html/rfc7162#section-3.2.5.1 which we indeed don't send because we always maintain a full seq-to-UID mapping with https://tools.ietf.org/html/rfc7162#section-3.2.5.2 which we do send out. The former is defined to default to 1:* in this context, so by us not sending it, we're actually asking Dovecot to potentially extend the range of data to be returned. The latter tells Dovecot something about our idea of the mapping, so it has an idea on our state. But anyway, if we didn't send this partial UID-to-seq mapping, Dovecot would have to send more data.
Dovecot upstream suggested that there were some bugs during the course of many years they've supported QRESYNC, but they didn't remember whether it applied to the 2.1.x releases. Let's close it as a older Dovecot bug, then, unless there's some evidence that our code and the related unit tests are buggy.