]> git.notmuchmail.org Git - notmuch/commit
notmuch: Start actually adding messages to the index.
authorCarl Worth <cworth@cworth.org>
Mon, 19 Oct 2009 03:56:30 +0000 (20:56 -0700)
committerCarl Worth <cworth@cworth.org>
Mon, 19 Oct 2009 03:56:30 +0000 (20:56 -0700)
commit10c176ba0e6d71e920b72a3165c0e56f26b5e4b3
treee6d915646fa08976f54ffb78bd0338afe9b6a7d9
parent512f7bb0f62c28c3c109a4f0fd089f253784dc9b
notmuch: Start actually adding messages to the index.

This is the beginning of the notmuch library as well, with its
interface in notmuch.h. So far we've got create, open, close, and
add_message (all with a notmuch_database prefix).

The current add_message function has already been whittled down from
what we have in notmuch-index-message to add only references,
message-id, and thread-id to the index, (that is---just enough to do
thread-linkage but nothing for full-text searching).

The concept here is to do something quickly so that the user can get
some data into notmuch and start using it. (The most interesting stuff
is then thread-linkage and labels like inbox and unread.)  We can
defer the full-text indexing of the body of the messages for later,
(such as in the background while the user is reading mail).

The initial thread-stitching step is still slower than I would like.
We may have to stop using libgmime for this step as its overhead is
not worth it for the simple case of just parsing the message-id,
references, and in-reply-to headers.
.gitignore
Makefile
database.cc [new file with mode: 0644]
notmuch-private.h [new file with mode: 0644]
notmuch.c
notmuch.h [new file with mode: 0644]
xutil.c [new file with mode: 0644]