[PATCH] configure: add --without-api-docs option
[notmuch-archives.git] / e8 / c24fe6ed4345fea6898505a80d0f62185cdf8c
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 44193431FB6\r
6         for <notmuch@notmuchmail.org>; Fri, 13 Jul 2012 12:33:57 -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: -1.499\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-1.499 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3, T_MIME_NO_TEXT=0.01,\r
13         UPPERCASE_50_75=0.791] autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id Wnq1lOfnettd for <notmuch@notmuchmail.org>;\r
17         Fri, 13 Jul 2012 12:33:55 -0700 (PDT)\r
18 Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu\r
19         [131.215.239.19])\r
20         by olra.theworths.org (Postfix) with ESMTP id A4DB2431FAE\r
21         for <notmuch@notmuchmail.org>; Fri, 13 Jul 2012 12:33:55 -0700 (PDT)\r
22 Received: from fire-doxen.imss.caltech.edu (localhost [127.0.0.1])\r
23         by fire-doxen-postvirus (Postfix) with ESMTP id 3148A328004;\r
24         Fri, 13 Jul 2012 12:33:55 -0700 (PDT)\r
25 X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
26 Received: from finestructure.net (DHCP-123-184.caltech.edu [131.215.123.184])\r
27         (Authenticated sender: jrollins)\r
28         by fire-doxen-submit (Postfix) with ESMTP id 6351732802E;\r
29         Fri, 13 Jul 2012 12:33:52 -0700 (PDT)\r
30 Received: by finestructure.net (Postfix, from userid 1000)\r
31         id 3CD433CA; Fri, 13 Jul 2012 12:33:52 -0700 (PDT)\r
32 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
33 To: Mark Walters <markwalters1009@gmail.com>, notmuch@notmuchmail.org\r
34 Subject: Re: [PATCH 2/3] cli: show allow the caller to specify the headers\r
35         output.\r
36 In-Reply-To: <1341673978-6094-3-git-send-email-markwalters1009@gmail.com>\r
37 References: <1341673978-6094-1-git-send-email-markwalters1009@gmail.com>\r
38         <1341673978-6094-3-git-send-email-markwalters1009@gmail.com>\r
39 User-Agent: Notmuch/0.13.2+54~ga0426dc (http://notmuchmail.org) Emacs/23.4.1\r
40         (x86_64-pc-linux-gnu)\r
41 Date: Fri, 13 Jul 2012 12:33:49 -0700\r
42 Message-ID: <878venxxpe.fsf@servo.finestructure.net>\r
43 MIME-Version: 1.0\r
44 Content-Type: multipart/signed; boundary="=-=-=";\r
45         micalg=pgp-sha256; protocol="application/pgp-signature"\r
46 X-BeenThere: notmuch@notmuchmail.org\r
47 X-Mailman-Version: 2.1.13\r
48 Precedence: list\r
49 List-Id: "Use and development of the notmuch mail system."\r
50         <notmuch.notmuchmail.org>\r
51 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
52         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
53 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
54 List-Post: <mailto:notmuch@notmuchmail.org>\r
55 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
56 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
57         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
58 X-List-Received-Date: Fri, 13 Jul 2012 19:33:57 -0000\r
59 \r
60 --=-=-=\r
61 \r
62 On Sat, Jul 07 2012, Mark Walters <markwalters1009@gmail.com> wrote:\r
63 > +typedef enum {\r
64 > +    NOTMUCH_SHOW_OUTPUT_HDR_DATE = 0x1,\r
65 > +    NOTMUCH_SHOW_OUTPUT_HDR_SUBJECT = 0x2,\r
66 > +    NOTMUCH_SHOW_OUTPUT_HDR_FROM = 0x4,\r
67 > +    NOTMUCH_SHOW_OUTPUT_HDR_TO = 0x8,\r
68 > +    NOTMUCH_SHOW_OUTPUT_HDR_CC = 0x10,\r
69 > +    NOTMUCH_SHOW_OUTPUT_HDR_REPLY_TO = 0x20,\r
70 > +    NOTMUCH_SHOW_OUTPUT_HDR_IN_REPLY_TO = 0x40,\r
71 > +    NOTMUCH_SHOW_OUTPUT_HDR_REFERENCES = 0x80,\r
72 > +    NOTMUCH_SHOW_OUTPUT_DEFAULT =\r
73 > +         NOTMUCH_SHOW_OUTPUT_HDR_SUBJECT |\r
74 > +         NOTMUCH_SHOW_OUTPUT_HDR_FROM |\r
75 > +         NOTMUCH_SHOW_OUTPUT_HDR_TO |\r
76 > +         NOTMUCH_SHOW_OUTPUT_HDR_CC |\r
77 > +         NOTMUCH_SHOW_OUTPUT_HDR_DATE\r
78 > +} notmuch_show_output_t;\r
79 \r
80 Is there a reason we need to limit this to some pre-defined subset of\r
81 headers?  Wouldn't it be nice if you could just specify arbitrary\r
82 headers?\r
83 \r
84 jamie.\r
85 \r
86 --=-=-=\r
87 Content-Type: application/pgp-signature\r
88 \r
89 -----BEGIN PGP SIGNATURE-----\r
90 Version: GnuPG v1.4.12 (GNU/Linux)\r
91 \r
92 iQIcBAEBCAAGBQJQAHgeAAoJEO00zqvie6q8gXEP/3IMrdnWkbQ0RF279sZLDqtk\r
93 UCzKxTcopL1yEQtrcRvsfDuEUONzayQVUytlcPFb2uyW6zMavNr+mYkjN/9i8Qnt\r
94 R8/bAE2V8h37mXLHzGuuuTwieFcp15sY7/+QXP6DDIQXHz4Yqu24GdC3i0/Au1bD\r
95 7sqtu4hl9nd8NiAoNKxR4h5HVEh11o4cJe/okAxQvszYglyBtQfzJG1wsBy9XYyL\r
96 JRu0tpPRwJVjuXEUSTt9nt0kejQKsRsZE9Q87meg3UyDFk5V9wmKT96s8/roNnV0\r
97 Azb09cnJybCk2t+5cBad0rsnuZQG1BadNKPur8GETdHxrLzdXS/nDe8IHzxdsxV+\r
98 5DExpnnmQ5ntrP8BQ0dwiPCDluzzI4YUkhpdBQWceLGnlv06cqx/diDXd1YiSitd\r
99 x73rtODaquRK1uALI1ifg2FKyyUxKDAvvP+MNGrEjhNThTrKOj6EQRJ2dQd2sMi4\r
100 7afj24StClMhzG/T7m9Vw97oNp0iOFtTsyu1v4deTxoZhtrWgkDWRDnnYjUjDS/3\r
101 LmqlQFYSmsUT8OF8pujVnR4mrz85fiu/B/658cE3eRcfhAK/l6jH5g9zteR7asaa\r
102 f8o2L27QDWu1xOux8qaY/LJvr57LRgpbUHt6EJ6yvKCo/a0IMMPEJVzt30/vbOJP\r
103 P1qMhY90u+eFkK5urslb\r
104 =khAK\r
105 -----END PGP SIGNATURE-----\r
106 --=-=-=--\r