aboutsummaryrefslogtreecommitdiffhomepage
path: root/notmuch-search.c
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2009-11-12 09:59:47 -0800
committerGravatar Carl Worth <cworth@cworth.org>2009-11-12 09:59:47 -0800
commit2f4c5874747c58be04764a7c9a62f3b352e4f9fb (patch)
tree81bcc44b9ef64ae2c696e9cf39e547f3b1f15683 /notmuch-search.c
parent4d35c3544d7bb0143cb1a17cc197cfe271670bf8 (diff)
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.).
Diffstat (limited to 'notmuch-search.c')
-rw-r--r--notmuch-search.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/notmuch-search.c b/notmuch-search.c
index 3873a067..38ca75d6 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 (" (");