[PATCH 2/3] notmuch: Add support for In-Reply-To in header

Subject: [PATCH 2/3] notmuch: Add support for In-Reply-To in header

Date: Wed, 27 Oct 2010 22:56:56 +0530

To: cworth@cworth.org

Cc: Aneesh Kumar K.V, notmuch@notmuchmail.org

From: Aneesh Kumar K.V


This will later used to implment switching to the replied to mail
from emacs

Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@gmail.com>
---
 notmuch-show.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/notmuch-show.c b/notmuch-show.c
index ea465de..dbb4672 100644
--- a/notmuch-show.c
+++ b/notmuch-show.c
@@ -287,7 +287,7 @@ static void
 format_headers_text (const void *ctx, notmuch_message_t *message)
 {
     const char *headers[] = {
-	"Subject", "From", "To", "Cc", "Bcc", "Date"
+	"Subject", "From", "To", "Cc", "Bcc", "Date", "In-Reply-To"
     };
     const char *name, *value;
     unsigned int i;
@@ -306,7 +306,7 @@ static void
 format_headers_json (const void *ctx, notmuch_message_t *message)
 {
     const char *headers[] = {
-	"Subject", "From", "To", "Cc", "Bcc", "Date"
+	"Subject", "From", "To", "Cc", "Bcc", "Date", "In-Reply-To"
     };
     const char *name, *value;
     unsigned int i;
-- 
1.7.1


Thread: