[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 0f / 8ab0d8a300e2d2ca5a964a222f3f8d461fe627
1 Return-Path: <david@tethera.net>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5  by arlo.cworth.org (Postfix) with ESMTP id 68A1A6DE02AD\r
6  for <notmuch@notmuchmail.org>; Wed, 23 Mar 2016 03:35:26 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.027\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.027 tagged_above=-999 required=5\r
12  tests=[AWL=-0.016, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01]\r
13  autolearn=disabled\r
14 Received: from arlo.cworth.org ([127.0.0.1])\r
15  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
16  with ESMTP id MaCizaZ_xki7 for <notmuch@notmuchmail.org>;\r
17  Wed, 23 Mar 2016 03:35:18 -0700 (PDT)\r
18 Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197])\r
19  by arlo.cworth.org (Postfix) with ESMTPS id 3EED76DE02A9\r
20  for <notmuch@notmuchmail.org>; Wed, 23 Mar 2016 03:35:18 -0700 (PDT)\r
21 Received: from remotemail by fethera.tethera.net with local (Exim 4.84)\r
22  (envelope-from <david@tethera.net>)\r
23  id 1aig8k-0002qN-7p; Wed, 23 Mar 2016 06:35:50 -0400\r
24 Received: (nullmailer pid 8853 invoked by uid 1000);\r
25  Wed, 23 Mar 2016 10:35:12 -0000\r
26 From: David Bremner <david@tethera.net>\r
27 To: Jani Nikula <jani@nikula.org>, Damien Cassou <damien@cassou.me>,\r
28  notmuch@notmuchmail.org\r
29 Subject: Re: notmuch-reply doesn't use Reply-To\r
30 In-Reply-To: <87twnygmps.fsf@nikula.org>\r
31 References: <8737vjcx9b.fsf@cassou.me> <8737vi8l7j.fsf@zancas.localnet>\r
32  <87fuzi9ng5.fsf@cassou.me> <87twnygmps.fsf@nikula.org>\r
33 User-Agent: Notmuch/0.21+74~g6c60fb1 (http://notmuchmail.org) Emacs/24.5.1\r
34  (x86_64-pc-linux-gnu)\r
35 Date: Wed, 23 Mar 2016 07:35:12 -0300\r
36 Message-ID: <8760wdlbxb.fsf@zancas.localnet>\r
37 MIME-Version: 1.0\r
38 Content-Type: text/plain\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.20\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43  <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
45  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
50  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Wed, 23 Mar 2016 10:35:26 -0000\r
52 \r
53 Jani Nikula <jani@nikula.org> writes:\r
54 \r
55 >>\r
56 >> Here is the reply message, and it does not contain the address in Reply-To.\r
57 >\r
58 > This was true way back when notmuch reply only knew about reply all. For\r
59 > --reply-to=sender, it's broken. The simplest "fix" might be\r
60 >\r
61 > diff --git a/notmuch-reply.c b/notmuch-reply.c\r
62 > index 6df54fc992bb..ed0f9cca5c00 100644\r
63 > --- a/notmuch-reply.c\r
64 > +++ b/notmuch-reply.c\r
65 > @@ -334,7 +334,7 @@ add_recipients_from_message (GMimeMessage *reply,\r
66 >       * that the address in the Reply-To header will always appear in\r
67 >       * the reply.\r
68 >       */\r
69 > -    if (reply_to_header_is_redundant (message)) {\r
70 > +    if (reply_to_header_is_redundant (message) && reply_all) {\r
71 >         reply_to_map[0].header = "from";\r
72 >         reply_to_map[0].fallback = NULL;\r
73 >      }\r
74 \r
75 I'm going to mark this fixed for now, since the docs have now been\r
76 updated to match the behaviour.\r
77 \r
78 d\r