aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthew Smith <matthew@gentoo.org>2022-06-26 09:25:30 +0100
committerMatthew Smith <matthew@gentoo.org>2022-07-01 08:54:15 +0100
commitbc0bf470ba2e27748ef266e7bd0e97bebbbd0c23 (patch)
treeacf19779a83db76a3d8450456f6a8d4df0f1457d /2022-06-26-mu-corruption
parent2022-06-13-python3-10: Add .pl translation (diff)
downloadgentoo-news-bc0bf470ba2e27748ef266e7bd0e97bebbbd0c23.tar.gz
gentoo-news-bc0bf470ba2e27748ef266e7bd0e97bebbbd0c23.tar.bz2
gentoo-news-bc0bf470ba2e27748ef266e7bd0e97bebbbd0c23.zip
2022-06-26-mu-corruption: new entry
Add a news item explaining a maildir corruption bug in the mu/mu4e mail reader. Signed-off-by: Matthew Smith <matthew@gentoo.org>
Diffstat (limited to '2022-06-26-mu-corruption')
-rw-r--r--2022-06-26-mu-corruption/2022-06-06-mu-corruption.en.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/2022-06-26-mu-corruption/2022-06-06-mu-corruption.en.txt b/2022-06-26-mu-corruption/2022-06-06-mu-corruption.en.txt
new file mode 100644
index 0000000..2108c99
--- /dev/null
+++ b/2022-06-26-mu-corruption/2022-06-06-mu-corruption.en.txt
@@ -0,0 +1,22 @@
+Title: Mu 1.7.23 Causing Maildir Corruption
+Author: Matthew Smith <matthew@gentoo.org>
+Posted: 2022-06-26
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: net-mail/mu-1.7.23
+
+Development versions of mu between 1.7.18 and 1.7.25 have a bug causing
+mail file names to sometimes get mangled after moving messages between
+directories. Symptoms include unread messages never being marked as
+read.
+
+Affected messages have the ':2,' flag appended multiple times. Using the
+following commands, users can remove the extra flags.
+
+ find ~/Maildir -name '*:2,*:*' |
+ sed "s/\(\([^:]*\)\(:2,\)\{1,\}\(:2,.*$\)\)/mv '\0' '\2\4'/" \
+ > rename.sh
+ # review rename.sh. empty file indicates that you are unaffected
+ sh rename.sh
+
+Upstream issue: https://github.com/djcb/mu/issues/2268