From: Carl Worth Date: Tue, 16 Nov 2010 20:03:03 +0000 (-0800) Subject: TODO: Add several items recently mentioned on the mailing list. X-Git-Tag: debian/0.6_254~242 X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=commitdiff_plain;h=c4bbbb73f8721098d11514e867e3b75899b1cd8d TODO: Add several items recently mentioned on the mailing list. Getting things listed here means that I can safely archive away those messages without worrying that the ideas will get lost. --- diff --git a/TODO b/TODO index 9834d73a..4bcff109 100644 --- a/TODO +++ b/TODO @@ -68,6 +68,21 @@ and *then* --max-threads), and also complete value for --sort= notmuch command-line tool ------------------------- +Add support to "notmuch search" and "notmuch show" to allow for +listing of duplicate messages, (distinct filenames with the same +Message-ID). I'm not sure what the option should be named. Perhaps +--with-duplicates ? + +Add a -0 option to "notmuch search" so that one can safely deal with +any filename with: + + notmuch search --output=files -0 | xargs -0 + +"notmuch setup" should use realpath() before replacing the +configuration file. The ensures that the final target file of any +intermediate symbolic links is what is actually replaced, (rather than +any symbolic link). + Replace "notmuch reply" with "notmuch compose --reply ". This would enable a plain "notmuch compose" to be used to construct an initial message, (which would then have the properly configured name @@ -126,6 +141,17 @@ the confusing gmime-filter-headers.c code (which decodes). notmuch library --------------- +Add support for custom flag<->tag mappings. In the notmuch +configuration file this could be + + [maildir] + synchronize_flags = R:replied; D*:deleted; S:~unread; + +In the library interface this could be implemented with an array of +structures to define the mapping (flag character, tag name, +inverse-sense bit (~ above), and tag-when-any-file-flagged +vs. tag-when-all-files-flagged (* above)). + Add an interface to accept a "key" and a byte stream, rather than a filename.