From 2f4c5874747c58be04764a7c9a62f3b352e4f9fb Mon Sep 17 00:00:00 2001 From: Carl Worth Date: Thu, 12 Nov 2009 09:59:47 -0800 Subject: notmuch search: Print the names of author of matched emails. It's important to have the names present for determining whether a thread is worth reading or not. We may want to think about abbreviating the list somehow if it is excessively long (or redundant as in bugzilla-daemon, bugzilla-daemon, bugzilla-daemon, etc.). --- notmuch-search.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'notmuch-search.c') diff --git a/notmuch-search.c b/notmuch-search.c index 3873a06..38ca75d 100644 --- a/notmuch-search.c +++ b/notmuch-search.c @@ -64,9 +64,10 @@ notmuch_search_command (void *ctx, int argc, char *argv[]) date = notmuch_thread_get_oldest_date (thread); relative_date = notmuch_time_relative_date (ctx, date); - printf ("thread:%s %12s %s", + printf ("thread:%s %12s %s; %s", notmuch_thread_get_thread_id (thread), relative_date, + notmuch_thread_get_authors (thread), notmuch_thread_get_subject (thread)); printf (" ("); -- cgit v1.2.3