[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / 31 / a87319d5c45280ad3a3a96be699a2d51c0a6d7
1 Return-Path: <jrollins@finestructure.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 olra.theworths.org (Postfix) with ESMTP id E06D6431FAF\r
6         for <notmuch@notmuchmail.org>; Thu, 29 Mar 2012 10:14:56 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -2.29\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.29 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3, T_MIME_NO_TEXT=0.01] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id 3Ok5VKYvDJ6J for <notmuch@notmuchmail.org>;\r
16         Thu, 29 Mar 2012 10:14:56 -0700 (PDT)\r
17 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
18         [131.215.239.19])\r
19         by olra.theworths.org (Postfix) with ESMTP id 4B1BC431FAE\r
20         for <notmuch@notmuchmail.org>; Thu, 29 Mar 2012 10:14:56 -0700 (PDT)\r
21 Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
22         by fire-doxen-postvirus (Postfix) with ESMTP id BF3DC328070;\r
23         Thu, 29 Mar 2012 10:14:53 -0700 (PDT)\r
24 X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
25 Received: from finestructure.net (DHCP-123-229.caltech.edu [131.215.123.229])\r
26         (Authenticated sender: jrollins)\r
27         by fire-doxen-submit (Postfix) with ESMTP id 0A353328064;\r
28         Thu, 29 Mar 2012 10:14:51 -0700 (PDT)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id D9955E0; Thu, 29 Mar 2012 10:14:49 -0700 (PDT)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Adam Wolfe Gordon <awg+notmuch@xvx.ca>, notmuch@notmuchmail.org\r
33 Subject: Re: [BUG/PATCH v2] emacs: Fix the References header in reply\r
34 In-Reply-To: <1332996818-15700-1-git-send-email-awg+notmuch@xvx.ca>\r
35 References: <1332991226-510-1-git-send-email-awg+notmuch@xvx.ca>\r
36         <1332996818-15700-1-git-send-email-awg+notmuch@xvx.ca>\r
37 User-Agent: Notmuch/0.12+78~g127fa56 (http://notmuchmail.org) Emacs/23.3.1\r
38         (x86_64-pc-linux-gnu)\r
39 Date: Thu, 29 Mar 2012 10:14:47 -0700\r
40 Message-ID: <87aa2zjpmg.fsf@servo.finestructure.net>\r
41 MIME-Version: 1.0\r
42 Content-Type: multipart/signed; boundary="=-=-=";\r
43         micalg=pgp-sha256; protocol="application/pgp-signature"\r
44 X-BeenThere: notmuch@notmuchmail.org\r
45 X-Mailman-Version: 2.1.13\r
46 Precedence: list\r
47 List-Id: "Use and development of the notmuch mail system."\r
48         <notmuch.notmuchmail.org>\r
49 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
50         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
51 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
52 List-Post: <mailto:notmuch@notmuchmail.org>\r
53 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
54 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
55         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
56 X-List-Received-Date: Thu, 29 Mar 2012 17:14:57 -0000\r
57 \r
58 --=-=-=\r
59 \r
60 On Wed, Mar 28 2012, Adam Wolfe Gordon <awg+notmuch@xvx.ca> wrote:\r
61 > In the new reply code, the References header gets inserted by\r
62 > message.el using a function called message-shorten-references. Unlike\r
63 > all the other header-inserting functions, it doesn't put a newline\r
64 > after the header, causing the next header to end up on the same\r
65 > line. In our case, this header happened to be User-Agent, so it's hard\r
66 > to notice. This is probably a bug in message.el, but we need to work\r
67 > around it.\r
68 >\r
69 > This fixes the problem by wrapping message-shorten-references in a\r
70 > function that inserts a newline after if necessary. This should\r
71 > protect against the message.el bug being fixed in the future.\r
72 \r
73 Hey, Adam.  Thanks so much for working on this.\r
74 \r
75 I just tested this patch and it does seem to fix the issue.  However, a\r
76 side effect seems to be that the References header is now appearing as\r
77 the first header in the reply buffer, rather than the last, as it used\r
78 to.  I suppose this is merely aesthetic, but I did prefer the ordering\r
79 as it was before.  Is there a way to tweak the\r
80 message-header-format-alist so that the References header appears last\r
81 again?\r
82 \r
83 Given the various things that are being affected by this, it would\r
84 probably be good to add a test for this as well.\r
85 \r
86 jamie.\r
87 \r
88 --=-=-=\r
89 Content-Type: application/pgp-signature\r
90 \r
91 -----BEGIN PGP SIGNATURE-----\r
92 Version: GnuPG v1.4.12 (GNU/Linux)\r
93 \r
94 iQIcBAEBCAAGBQJPdJiHAAoJEO00zqvie6q8kOMQAIUbXIrJtMolxvwdA9gw5mBk\r
95 KFtYfuCg236TXMu0hqHw68HDPNYRjhEc/8laHgbblq6Mq9WfrDJYfSqQKSiNc1wC\r
96 75Lj24t1eobRXNNqlFl4Y2BJC3q8DPolCif/+soeAM/D9yVq864g1q5hHOFBDWcp\r
97 7Zvf72DW6S11TZn/QH+oJxsDkLmFRGikDMEBIR0BHIZba5a8varGe+Qem496of7S\r
98 FYfwGXXGQnXigGKELjkxcQbtx3MLyolsZDj61hMsaC1Q6GeBaZShF3TAugBzcw/o\r
99 tQ2df4bMLt0IqWGUgMgHFFuenu/fYVSn0QU2nblrulDBqJiMQhmSYHLAORvel3in\r
100 QYzcTpn5d17vhlwIswudVTdci9sLmF+qfz92OGLYZKbx2c2V7rN6pG1KowvU7VMK\r
101 92S34pzgOj3YNwyhXWC1SKJbltaT/ov0pUpElmmNC8jy0d8GW39RGrWY9gmhEj3D\r
102 Z6a9T58Lzd4biBhkWBMzv7jgcwxY6aujUH91cI0dEgASP8fb+pOELSKOS4bzUXf7\r
103 pXk7tT48Mlh0ZIuKzHzJzrKr471F3xqPZUb1IwsoyDCjCP1wchPA6kRw/qZQU8tr\r
104 nP6/Jk415WsSfEQ1uhZV4QsIFkYMOSIOnDh90VQEjsNMIhRrB/FEWOoJI/X3/Ds3\r
105 j4o/36X+pQgzdfh91E4u\r
106 =J6sU\r
107 -----END PGP SIGNATURE-----\r
108 --=-=-=--\r