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