aboutsummaryrefslogtreecommitdiffhomepage
path: root/TODO
Commit message (Collapse)AuthorAge
* Rename NOTMUCH_DATABASE_MODE_WRITABLE to NOTMUCH_DATABASE_MODE_READ_WRITEGravatar Carl Worth2009-11-21
| | | | And correspondingly, READONLY to READ_ONLY.
* TODO: Add notes on portability, and remove completed tasks.Gravatar Carl Worth2009-11-21
| | | | | It's better to have things in TODO rather than mails with a todo tag in my notmuch database.
* TODO: Several updates.Gravatar Carl Worth2009-11-21
|
* TODO: Add a couple of notes about fixing the completion script.Gravatar Carl Worth2009-11-20
| | | | | I'm throwing away a half-finished fix of this now, and just want to ensure I don't forget about it.
* TODO: Add note on making "notmuch new" interruptible.Gravatar Carl Worth2009-11-12
| | | | | | | | | This note was described in the previous commit message, but mistakenly not committed: The note about making "notmuch setup" faster is now rewritten to apply to "notmuch new" since "notmuch setup" no longer does any mail indexing.
* TODO: Update based on recent additions.Gravatar Carl Worth2009-11-12
| | | | | | | | | We recently added support for "notmuch reply" and also made (most of) the hidden components self documenting. The note about making "notmuch setup" faster is now rewritten to apply to "notmuch new" since "notmuch setup" no longer does any mail indexing.
* TODO: Note that notmuch restore needs some progress indication.Gravatar Carl Worth2009-11-09
| | | | | | A recent "notmuch restore" command took *forever* for me. Obviously, we need to fix the underlying performance bug in Xapian, but in the meantime, a progress indicator would help.
* notmuch.el: Add 'N' binding to mark message read and go to next.Gravatar Carl Worth2009-11-05
| | | | | | The magic space bar is nice, but sometimes there's a message with a long attachment that I just want to skip, but still consider the message marked as read.
* notmuch.el: Mark messages read when the (n)ext keybinding is pressedGravatar Carl Worth2009-11-03
| | | | | Of course, technically, we're removing the "unread" tag, but you get the idea. :-)
* notmuch.el: Hide email headers by default.Gravatar Carl Worth2009-11-02
| | | | The display of the header can be toggled with the 'h' key.
* TODO: Add an idea from talking with keithp on the train.Gravatar Carl Worth2009-11-02
| | | | | I mentioned the read-only directory optimization to Keith, and he liked it but wanted to be able to configure it to be fully automated.
* TODO: Organize tasks based on emacs interface, command-line tool, or library.Gravatar Carl Worth2009-11-02
| | | | | There are conceptually three different projects here, so it helps to keep the tasks for each separated.
* notmuch.el: Hide thread IDs in notmuch-search mode.Gravatar Carl Worth2009-11-02
| | | | One more baby step toward something that's pleasant to use.
* notmuch.el: Implement visual feedback for add/remove tags.Gravatar Carl Worth2009-11-02
| | | | | There's no undo still, but at least you can see what you are doing now.
* Print "part" markers for each MIME part (with Content-type).Gravatar Carl Worth2009-11-02
| | | | | This can allow for the client to hide undesired MIME parts such as text/html.
* TODO: Add several items.Gravatar Carl Worth2009-11-02
| | | | | These are the things that are actively preventing me from being able to use notmuch as an email-reading client.
* Add a simple manual page for notmuch.Gravatar Carl Worth2009-11-02
| | | | | By pulling content out of notmuch help, and also the messages printed by "notmuch setup".
* notmuch: Add a talloc context argument to each top-level command function.Gravatar Carl Worth2009-10-31
| | | | | | | I had noticed several times earlier that having a talloc context passed in would make things more convenient. I'm not exercising that convenience yet, but the context is there now, (and there's one fewer item on our TODO list).
* Rename message_results/thread_results to messages/threads.Gravatar Carl Worth2009-10-31
| | | | Shorter naming without being any less clear. A definite win.
* TODO: Add man page and compiling a libnotmuch library to the list.Gravatar Carl Worth2009-10-30
| | | | These are things we'll want done before any big announcement.
* TODO: Note that "notmuch show" exists now and list several new ideas.Gravatar Carl Worth2009-10-30
| | | | | | The timestamp stuff we'll want to do soon, since it's a database change, (though not a major one---at worst a handful of stale timestamp documents would be left in the database).
* TODO: Update now that full-text indexing is in.Gravatar Carl Worth2009-10-28
| | | | | The optimization idea removed here doesn't make sense anymore with full-text indexing happening up front.
* TODO: A couple new items.Gravatar Carl Worth2009-10-28
| | | | | It's time to put full-text indexing back, and we might want to experiment with optimization the original thread-stitching phase.
* TODO: Remove a couple of since-completed items.Gravatar Carl Worth2009-10-28
| | | | | | | | | | | "notmuch tag" is implemented now and seems to work great (and fast). As for the race condition, as noted in the description we're removing it's not exposed directly in the API, but only in a client that allows for looping over search results and removing the inbox tag from all of them. But then, that's exactly what the "notmuch tag" command does. So, as discussed, we've now documented that command to highlight the issue. Problem resolved, (as well as we can).
* TODO: Several more ideas that have come to mind, that I don't want to forget.Gravatar Carl Worth2009-10-27
| | | | | Some of these are simple little code cleanups, but it's nice to write them down rather than trying to remember them.
* TODO: More notes on archive-thread and race conditions.Gravatar Carl Worth2009-10-27
| | | | | | | Interstingly, it's our simple "notmuch" client that's going to be the most difficult to fix. There's just not as much information preserved in the textual representation from "notmuch search" as there is in the objects returned from notmuch_query_search_threads.
* TODO: Add "notmuch tag" and thoughts on avoiding races in archiving threads.Gravatar Carl Worth2009-10-27
| | | | | | The archive-thread race condition doesn't even exist now because there's no command for modifying tags at the level of a thread (just individual messages).
* notmuch restore: Fix to remove all tags before adding tags.Gravatar Carl Worth2009-10-26
| | | | | | | | | | | | This means that the restore operation will now properly pick up the removal of tags indicated by the tag just not being present in the dump file. We added a few new public functions in order to support this: notmuch_message_freeze notmuch_message_remove_all_tags notmuch_message_thaw
* Add TODO file.Gravatar Carl Worth2009-10-25
I've been maintaining this for a while now, so I might as well start tracking it with revision control as well.