Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 8941A40D152 for ; Wed, 27 Oct 2010 10:27:30 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -4.2 X-Spam-Level: X-Spam-Status: No, score=-4.2 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3] autolearn=unavailable Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vqpy8RDJK+Rw for ; Wed, 27 Oct 2010 10:27:30 -0700 (PDT) Received: from e23smtp08.au.ibm.com (e23smtp08.au.ibm.com [202.81.31.141]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 3686440D162 for ; Wed, 27 Oct 2010 10:27:09 -0700 (PDT) Received: from d23relay04.au.ibm.com (d23relay04.au.ibm.com [202.81.31.246]) by e23smtp08.au.ibm.com (8.14.4/8.13.1) with ESMTP id o9RHRjkD021764 for ; Thu, 28 Oct 2010 04:27:45 +1100 Received: from d23av02.au.ibm.com (d23av02.au.ibm.com [9.190.235.138]) by d23relay04.au.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id o9RHR3sn1896680 for ; Thu, 28 Oct 2010 04:27:03 +1100 Received: from d23av02.au.ibm.com (loopback [127.0.0.1]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id o9RHR2Cs031509 for ; Thu, 28 Oct 2010 04:27:03 +1100 Received: from skywalker.in.ibm.com ([9.77.207.27]) by d23av02.au.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id o9RHQxk6031146; Thu, 28 Oct 2010 04:27:01 +1100 From: "Aneesh Kumar K.V" To: cworth@cworth.org Subject: [PATCH 2/3] notmuch: Add support for In-Reply-To in header Date: Wed, 27 Oct 2010 22:56:56 +0530 Message-Id: <1288200417-6584-2-git-send-email-aneesh.kumar@linux.vnet.ibm.com> X-Mailer: git-send-email 1.7.1 In-Reply-To: <1288200417-6584-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> References: <1288200417-6584-1-git-send-email-aneesh.kumar@linux.vnet.ibm.com> Cc: "Aneesh Kumar K.V" , notmuch@notmuchmail.org X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 27 Oct 2010 17:27:30 -0000 This will later used to implment switching to the replied to mail from emacs Signed-off-by: Aneesh Kumar K.V --- 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