aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-10-25 23:12:20 -0700
committerGravatar Carl Worth <cworth@cworth.org>2009-10-25 23:12:20 -0700
commit1ba3d46fab12d616b2085f5794543444cc4bc750 (patch)
treea7a391337a5a63c66e5598e419e3b030e84babb3 /Makefile
parentcd467cafb5eee180661ebc14e0fb71426e67c855 (diff)
Add an initial implementation of a notmuch_thread_t object.
We've now got a new notmuch_query_search_threads and a notmuch_threads_result_t iterator. The thread object itself doesn't do much yet, (just allows one to get the thread_id), but that's at least enough to see that "notmuch search" is actually doing something now, (since it has been converted to print thread IDs instead of message IDs). And maybe that's all we need. Getting the messages belonging to a thread is as simple as a notmuch_query_search_messages with a string of "thread:<thread-id>". Though it would be convenient to add notmuch_thread_get_messages which could use the existing notmuch_message_results_t iterator. Now we just need an implementation of "notmuch show" and we'll have something somewhat usable.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile1
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6af7faf5..747408a6 100644
--- a/Makefile
+++ b/Makefile
@@ -18,6 +18,7 @@ MODULES= \
message-file.o \
query.o \
sha1.o \
+ thread.o \
libsha1.o \
xutil.o