Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 46 / 7baab8fd62b9202e9a2f91611467b35c11c33d
1 Return-Path: <jason@milr.com>\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 164E5431FBC\r
6         for <notmuch@notmuchmail.org>; Mon, 22 Jul 2013 17:52:29 -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: 0\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=0 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_NONE=-0.0001] 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 nRdZh2hM1dKJ for <notmuch@notmuchmail.org>;\r
16         Mon, 22 Jul 2013 17:52:21 -0700 (PDT)\r
17 X-Greylist: delayed 1155 seconds by postgrey-1.32 at olra;\r
18         Mon, 22 Jul 2013 17:52:20 PDT\r
19 Received: from fed1rmfepi208.cox.net (fed1rmfepi208.cox.net [68.230.241.153])\r
20         by olra.theworths.org (Postfix) with ESMTP id C43A1431FB6\r
21         for <notmuch@notmuchmail.org>; Mon, 22 Jul 2013 17:52:20 -0700 (PDT)\r
22 Received: from fed1rmimpo305 ([68.230.241.173]) by fed1rmfepo203.cox.net\r
23         (InterMail vM.8.01.05.09 201-2260-151-124-20120717) with ESMTP\r
24         id <20130723003304.BWSP3846.fed1rmfepo203.cox.net@fed1rmimpo305>\r
25         for <notmuch@notmuchmail.org>; Mon, 22 Jul 2013 20:33:04 -0400\r
26 Received: from localhost ([70.191.80.19]) by fed1rmimpo305 with cox\r
27         id 3cZ31m00J0R0GNW01cZ3bs; Mon, 22 Jul 2013 20:33:03 -0400\r
28 X-CT-Class: Clean\r
29 X-CT-Score: 0.00\r
30 X-CT-RefID: str=0001.0A020207.51EDCF3F.012C,ss=1,re=0.000,fgs=0\r
31 X-CT-Spam: 0\r
32 X-Authority-Analysis: v=2.0 cv=R/Dd76tX c=1 sm=1\r
33         a=8Pu+u8o12PWZCfupdeghHQ==:17 a=wom5GMh1gUkA:10 a=wOsrnI10qBsA:10\r
34         a=as2ii8JTC2oA:10 a=kj9zAlcOel0A:10 a=BswL-RFwAAAA:8 a=kM_2MJY8AAAA:8\r
35         a=-DOwLxJbGmkA:10 a=Am0YYMluCUEbXP6Kt-EA:9 a=CjuIK1q_8ugA:10\r
36         a=bqnDBv3PJxgA:10 a=NI3GwEGIxhIA:10 a=8Pu+u8o12PWZCfupdeghHQ==:117\r
37 X-CM-Score: 0.00\r
38 Authentication-Results: cox.net; auth=pass (CRAM-MD5)\r
39         smtp.auth=aidenn01@cox.net\r
40 Date: Mon, 22 Jul 2013 17:33:03 -0700\r
41 From: Jason Miller <jason@milr.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: Unquoted message ID in notmuch-mutt-tag\r
44 Message-ID: <20130723003303.GA21463@home.jasonmmiller.org>\r
45 MIME-Version: 1.0\r
46 Content-Type: text/plain; charset=us-ascii\r
47 Content-Disposition: inline\r
48 User-Agent: Mutt/1.5.21 (2010-09-15)\r
49 X-Mailman-Approved-At: Tue, 30 Jul 2013 02:14:53 -0700\r
50 X-BeenThere: notmuch@notmuchmail.org\r
51 X-Mailman-Version: 2.1.13\r
52 Precedence: list\r
53 List-Id: "Use and development of the notmuch mail system."\r
54         <notmuch.notmuchmail.org>\r
55 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
56         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
57 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
58 List-Post: <mailto:notmuch@notmuchmail.org>\r
59 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
60 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
61         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
62 X-List-Received-Date: Tue, 23 Jul 2013 00:52:29 -0000\r
63 \r
64 Hi,\r
65 \r
66 Just started using notmuch along with notmuch-mutt.  I found a bug in\r
67 notmuch-mutt where the message id is not shell-quoted in the tag_action.\r
68 a simple one-line-fix is to shell-quote the result of get_message_id:\r
69 \r
70 @@ -150,7 +150,7 @@\r
71  }\r
72  \r
73  sub tag_action(@) {\r
74 -    my $mid = get_message_id();\r
75 +    my $mid = shell_quote(get_message_id());\r
76  \r
77      system("notmuch tag "\r
78            . shell_quote(join(' ', @_))\r
79 \r
80 -Jason\r