Re: Error with contrib/notmuch-pick
[notmuch-archives.git] / 00 / 51d96123ed3c1a2840c6003ef60f38ee2fa1d2
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 43109429E21\r
6         for <notmuch@notmuchmail.org>; Wed, 26 Oct 2011 19:53:09 -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 DA0C3y28LYkQ for <notmuch@notmuchmail.org>;\r
16         Wed, 26 Oct 2011 19:53:08 -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 576FE431FB6\r
20         for <notmuch@notmuchmail.org>; Wed, 26 Oct 2011 19:53:08 -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 CB23F3280B9;\r
23         Wed, 26 Oct 2011 19:53:05 -0700 (PDT)\r
24 X-Spam-Scanned: at Caltech-IMSS on fire-doxen by amavisd-new\r
25 Received: from finestructure.net (cpe-76-174-136-149.socal.res.rr.com\r
26         [76.174.136.149]) (Authenticated sender: jrollins)\r
27         by fire-doxen-submit (Postfix) with ESMTP id C66A0328085;\r
28         Wed, 26 Oct 2011 19:53:02 -0700 (PDT)\r
29 Received: by finestructure.net (Postfix, from userid 1000)\r
30         id 479DEAF1; Wed, 26 Oct 2011 19:53:02 -0700 (PDT)\r
31 From: Jameson Graef Rollins <jrollins@finestructure.net>\r
32 To: Thomas Schwinge <thomas@schwinge.name>\r
33 Subject: Re: [PATCH] emacs: Modify notmuch-show-get-message-id to return\r
34         message-id unprefixed with "id:".\r
35 In-Reply-To: <87ehykflzw.fsf@kepler.schwinge.homeip.net>\r
36 References: <87mxdabyy8.fsf@washington.ligo-wa.caltech.edu>\r
37         <1318199748-25058-1-git-send-email-jrollins@finestructure.net>\r
38         <87ehykflzw.fsf@kepler.schwinge.homeip.net>\r
39 User-Agent: Notmuch/0.9-24-g2fd0ca5 (http://notmuchmail.org) Emacs/23.3.1\r
40         (x86_64-pc-linux-gnu)\r
41 Date: Wed, 26 Oct 2011 19:52:59 -0700\r
42 Message-ID: <87ehxzb0xg.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 Cc: Notmuch Mail <notmuch@notmuchmail.org>\r
47 X-BeenThere: notmuch@notmuchmail.org\r
48 X-Mailman-Version: 2.1.13\r
49 Precedence: list\r
50 List-Id: "Use and development of the notmuch mail system."\r
51         <notmuch.notmuchmail.org>\r
52 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
53         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
54 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
55 List-Post: <mailto:notmuch@notmuchmail.org>\r
56 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
57 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
58         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
59 X-List-Received-Date: Thu, 27 Oct 2011 02:53:09 -0000\r
60 \r
61 --=-=-=\r
62 Content-Transfer-Encoding: quoted-printable\r
63 \r
64 On Tue, 11 Oct 2011 01:46:43 +0200, Thomas Schwinge <thomas@schwinge.name> =\r
65 wrote:\r
66 > On Sun,  9 Oct 2011 15:35:48 -0700, Jameson Graef Rollins <jrollins@fines=\r
67 tructure.net> wrote:\r
68 > >  (defun notmuch-show-get-message-id ()\r
69 > >    "Return the message id of the current message."\r
70 > > -  (concat "id:\"" (notmuch-show-get-prop :id) "\""))\r
71 > > +  (concat "\"" (notmuch-show-get-prop :id) "\""))\r
72 >=20\r
73 > Shouldn't the double quotes be removed here, too?  (And be re-added in\r
74 > the other places where id: is added.)\r
75 \r
76 In point of fact, do we need these quotes around message IDs at all?\r
77 Can message IDs have characters that would need to be escaped for the\r
78 shell?\r
79 \r
80 This seems to also be related to the issue brought up by Erlend Simonsen\r
81 in [0], where emacs 24 seems to be shell-quoting things as needed.\r
82 \r
83 So maybe these quotes aren't actually needed at all?...\r
84 \r
85 jamie.\r
86 \r
87 [0] id:87y5w9w6dm.fsf@fudge.hue.no\r
88 \r
89 --=-=-=\r
90 Content-Type: application/pgp-signature\r
91 \r
92 -----BEGIN PGP SIGNATURE-----\r
93 Version: GnuPG v1.4.11 (GNU/Linux)\r
94 \r
95 iQIcBAEBCAAGBQJOqMeLAAoJEO00zqvie6q8tWUQAKEnU8sOxC83NpH3yWb9lbew\r
96 om9QmqohxpjlrNC45HfevuVtTK1Esg3HLbAWxgKHc7m5Fmg8B4/3o5M+eTeMu14f\r
97 O7s+tkViYBl3uKY6OMKSUhURvILKalfwlUAI27H+GNGN3e5gUP4+qf6rLeqWf+Py\r
98 e0d7J3meCpxTVoNxsigKBoCcS7pmXxDO3uanbtjPOpoAZIDTNePlwRuatv+OGTYw\r
99 V1krGO3JEztSijfSeNNZKLgIOqnzb5n28jlVeirDc5bWZW1KBaymgpMTYKndupir\r
100 C1mJWC+OTwWS0/LRsPIzdWRjP1sWegqwJ/+WYq90Wue7d+469KVki5NnWx/vmoz8\r
101 8Cp7neiU1s2Ep2fGoY5Wuxhuh4RDD+g2bgYNXrGBsKH7YUsq2zND53I9e/NJRZOc\r
102 hrIjiGVZajPi73EF0qPeBXAv4gGk2l3jVoUeGjix6OLo8h3KcXkZJAsEue54XCNr\r
103 mXOfauHhZEWK5ulgc5ok0Pwan+7C8QovDsjqCiubNeQhFiTYZnhCEGFuXyHQxe7T\r
104 zT220pVAP0PeKBYDeaFkzeRJzcno1P5rqAoLGQimuSmF2XfcbM5sy+Rw73XlV7lz\r
105 QWap6+bYlYXN4+ds1c5oOQidHzAOEzTWanX6fSGyvQsZshEMRMUJLasurDglan6f\r
106 dfT4PlsrE505nARySbny\r
107 =RNOs\r
108 -----END PGP SIGNATURE-----\r
109 --=-=-=--\r