this post was submitted on 22 Aug 2025
11 points (100.0% liked)
Linux
58306 readers
1146 users here now
From Wikipedia, the free encyclopedia
Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).
Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.
Rules
- Posts must be relevant to operating systems running the Linux kernel. GNU/Linux or otherwise.
- No misinformation
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon by Alpár-Etele Méder, licensed under CC BY 3.0
founded 6 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
The "seen" flag should be represented by an "S" in the filename of the mail (see Maildir spec).
You could probably observe filename changes using:
While that is running in your terminal, move a mail using aerc, and see if aerc correctly preserves the "S" flag in the filename.
I tried a few things, and the aerc behaviour seems fine. When I read an email, the "S" is added, and when I move it, the flag is preserved.
However, I observed 2 scenarios:
One thing I noticed (which might be the problem somehow?) is that:
This means that the difference in the 2 scenarios above, is that in the first case (the expected one) the mail is synced while having the U=13 present, while in the second case is synced with the U removed.
I tried to understand what's the meaning of that part (which looks like an ID) and if it's relevant in the process, but I didn't find any information, sadly.
For now, I think I will just use the imap connection rather than local, but if you have any insights, please let me know! 🙃 And thanks again for the debugging tip, it really helped to understand what's going on! :D
That "U=xxx" is the IMAP UID, which is a unique identifier that message has in the IMAP mailbox. mbsync adds that to the filename just so it can track which (local) message corresponds to what message on the IMAP server.
When moving a message from one mailbox (folder) to another, this UID changes, because it's per-mailbox only. If you read the manpage for mbsync, it says explicitly that the MUA should strip the U=xxx when moving between maildirs, so the behavior of aerc here is correct.
In order to get to the bottom of this, you'd probably have to enable the debug output of mbsync and look at exactly what IMAP commands it sends to Gmail, then decipher the relevant command(s) by looking at the RFC, and then decide whether it's Gmail or mbsync's fault this gets lost. You could also contact the mbsync devs with this I guess.
I found someone complaining about the same issue, without getting a reply, 7 years ago, except that person was using mutt: https://stackoverflow.com/questions/52218254/isync-mbsync-on-gmail-marks-mail-as-new-after-move-to-another-folder
That doesn't help you obviously but from this we might guess it's probably not aerc's fault.