[PATCH 2/3] notmuch: Add support for In-Reply-To in header
Aneesh Kumar K.V
aneesh.kumar at linux.vnet.ibm.com
Wed Oct 27 10:26:56 PDT 2010
This will later used to implment switching to the replied to mail
from emacs
Signed-off-by: Aneesh Kumar K.V <aneesh.kumar at 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
More information about the notmuch
mailing list