Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 73 / a938dfcfcf01adad362a1c1aeb5b5e843807b7
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 3E40A431FBD\r
6         for <notmuch@notmuchmail.org>; Wed, 23 May 2012 10:35:04 -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 QGZwY4vMHpm6 for <notmuch@notmuchmail.org>;\r
16         Wed, 23 May 2012 10:35:02 -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 0DDD2431FAF\r
20         for <notmuch@notmuchmail.org>; Wed, 23 May 2012 10:35:02 -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 747982E50936;\r
23         Wed, 23 May 2012 10:34:59 -0700 (PDT)\r
24 X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
25 Received: from finestructure.net (unknown [137.151.175.56])\r
26         (Authenticated sender: jrollins)\r
27         by fire-doxen-submit (Postfix) with ESMTP id ABC812E50B79;\r
28         Wed, 23 May 2012 10:34:56 -0700 (PDT)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id 6ECDC1E1; Wed, 23 May 2012 10:34:56 -0700 (PDT)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Jani Nikula <jani@nikula.org>\r
33 Subject: Re: [PATCH v3 1/6] cli: new crypto structure to store crypto contexts\r
34         and parameters, and functions to support it\r
35 In-Reply-To:\r
36  <CAB+hUn_eapb9nxC2rnyRX7czoXELX-8KeWOCFe-eDtRw0OifOw@mail.gmail.com>\r
37 References: <1337737430-21160-1-git-send-email-jrollins@finestructure.net>\r
38         <1337737430-21160-2-git-send-email-jrollins@finestructure.net>\r
39         <CAB+hUn_eapb9nxC2rnyRX7czoXELX-8KeWOCFe-eDtRw0OifOw@mail.gmail.com>\r
40 User-Agent: Notmuch/0.13+24~g16915cd (http://notmuchmail.org) Emacs/23.4.1\r
41         (x86_64-pc-linux-gnu)\r
42 Date: Wed, 23 May 2012 10:34:53 -0700\r
43 Message-ID: <87396q7qde.fsf@servo.finestructure.net>\r
44 MIME-Version: 1.0\r
45 Content-Type: multipart/signed; boundary="=-=-=";\r
46         micalg=pgp-sha256; protocol="application/pgp-signature"\r
47 Cc: Notmuch Mail <notmuch@notmuchmail.org>\r
48 X-BeenThere: notmuch@notmuchmail.org\r
49 X-Mailman-Version: 2.1.13\r
50 Precedence: list\r
51 List-Id: "Use and development of the notmuch mail system."\r
52         <notmuch.notmuchmail.org>\r
53 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
55 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
56 List-Post: <mailto:notmuch@notmuchmail.org>\r
57 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
58 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
59         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
60 X-List-Received-Date: Wed, 23 May 2012 17:35:04 -0000\r
61 \r
62 --=-=-=\r
63 \r
64 On Tue, May 22 2012, Jani Nikula <jani@nikula.org> wrote:\r
65 >> +/* for the specified protocol return the context pointer (initializing\r
66 >> + * if needed) */\r
67 >> +GMimeCryptoContext *\r
68 >> +notmuch_crypto_get_context (notmuch_crypto_t *crypto, const char\r
69 > *protocol)\r
70 >> +{\r
71 >> +    GMimeCryptoContext *cryptoctx = NULL;\r
72 >\r
73 > Isn't GMimeCryptoContext gmime 2.6 specific? It's #ifdeffed elsewhere at\r
74 > least. Also affects the return type.\r
75 \r
76 Yes, good catch, Jani.  Thank you.  Will fix.\r
77 \r
78 >> +    if ((strcmp (protocol, "application/pgp-signature") == 0)\r
79 >> +       || (strcmp (protocol, "application/pgp-encrypted") == 0)) {\r
80 >\r
81 > Is protocol guaranteed to be lower case?\r
82 \r
83 That's a good question.  I don't know.  I'll check and fix\r
84 appropriately.\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 iQIcBAEBCAAGBQJPvR++AAoJEO00zqvie6q8LwcP/1Dkf1kIHTcow27JWLSMd/D5\r
95 Zpr/cRXNOPcmvNyeD8h9UeWAYfDoslYpH952q4k5qkX+UzGk1WzjDhVCaJc+qPk4\r
96 G2eA6boKdJ+FxilFJejjPeeFULvuVjNnnaM/ZuLTgTr0aOBRalcgCFNFOyx0yoTg\r
97 /sYtDR6bt/s8hsibnpMHlrYU0u9iy4Mfn9AEPjWnGeMnM3J7RsJVlR1tp0Q1z61o\r
98 jNyPaHbdz+VZCjQjV171Cony7Ggx1eyzFeGFS38jKhtix6JUeAm/AaYv/tBvCs0h\r
99 17Dmp9gAyuYHg34UA9nPGbZaBxt8Pbtilggg9bYXEv8f45sPGzbZ3mncCEqKfFVW\r
100 8Xf1E0hINlo0mlyU7f1EW3O1nrfn9nOxwl728yP6eGumf12BN1b6mfrWygDTkOsj\r
101 rqV/eR2pFVQ2RPmkTCqQ6THLELh3iLAdAdveGvl6KyM7H3XrH+KcuTKhQ1No6Asu\r
102 ar7+4lU9ejOsn3AvgjAC/xvkO4PC5zFGXDi1O+iMXnkt71gem870aYZ+ZKiCTmO3\r
103 x7wbnlyGgeH3P7FSTbLsdOwrLR2bxZwP3JPGZRatXL2K/s9MqnJEVzU5S57SfDJm\r
104 orcblUQsvmpXCssEFcO5dm+5CcnsEzutZMVJoPRwReXvZhvWjVhrui0Gv+2N2oWt\r
105 u/krc6Y10TW8N+WxYJbQ\r
106 =Be01\r
107 -----END PGP SIGNATURE-----\r
108 --=-=-=--\r