]> git.notmuchmail.org Git - notmuch/blob - TODO
TODO: Note that "notmuch show" exists now and list several new ideas.
[notmuch] / TODO
1 Rename notmuch_thread_results_t and notmuch_message_results_t to
2 notmuch_threads_t and notmuch_messages_t respectively.
3
4 Add a talloc context as the first argument to each command in
5 notmuch.c.
6
7 Make "notmuch setup" not index all messages, but only what it can do
8 in a reasonable amount of time, (then add "notmuch index" so the user
9 can complete the job when convenient).
10
11 Fix to use the *last* Message-ID header if multiple such headers are
12 encountered, (I noticed this is one thing that kept me from seeing the
13 same message-ID values as sup).
14
15 Add support for the user to specify custom headers to be indexed.
16
17 Add support for automatic tagging of new messages based on particular
18 search criteria, (likely using an InMemory database for the new
19 messages).
20
21 Fix notmuch.c to call add_timestamp/get_timestampt with path names
22 relative to the database path. (Otherwise, moving the database to a
23 new directory will result in notmuch creating new timestamp documents
24 and leaving stale ones behind.)
25
26 Fix notmuch.c to use a DIR prefix for directory timestamps, (the idea
27 being that it can then add other non-directory timestamps such as for
28 noting how far back in the past mail has been indexed, and whether it
29 needs to re-tag messages based on a theoretical "auto-tags"
30 configuration file).
31
32 Audit everything for dealing with out-of-memory (and drop xutil.c).
33
34 Write a test suite.
35
36 Achieve 100% test coverage with the test suite.