Re: [PATCH 0/4] Allow specifying alternate names for addresses in other_email
[notmuch-archives.git] / 18 / eac176f245826c46c80044ca4861244963f9da
1 Return-Path: <bremner@unb.ca>\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 31BD9431FB6\r
6         for <notmuch@notmuchmail.org>; Tue, 25 Dec 2012 06:34:34 -0800 (PST)\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 tests=[none]\r
12         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 TQ6vQukzflAL for <notmuch@notmuchmail.org>;\r
16         Tue, 25 Dec 2012 06:34:30 -0800 (PST)\r
17 Received: from tesseract.cs.unb.ca (tesseract.cs.unb.ca [131.202.240.238])\r
18         (using TLSv1 with cipher AES256-SHA (256/256 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id DC2DE431FAE\r
21         for <notmuch@notmuchmail.org>; Tue, 25 Dec 2012 06:34:30 -0800 (PST)\r
22 Received: from fctnnbsc30w-156034082078.dhcp-dynamic.fibreop.nb.bellaliant.net\r
23         ([156.34.82.78] helo=zancas.localnet)\r
24         by tesseract.cs.unb.ca with esmtpsa\r
25         (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.72)\r
26         (envelope-from <bremner@unb.ca>)\r
27         id 1TnVaL-0001W4-DV; Tue, 25 Dec 2012 10:34:30 -0400\r
28 Received: from bremner by zancas.localnet with local (Exim 4.80)\r
29         (envelope-from <bremner@unb.ca>)\r
30         id 1TnVaF-0007KI-Rm; Tue, 25 Dec 2012 10:34:19 -0400\r
31 From: David Bremner <david@tethera.net>\r
32 To: Austin Clements <amdragon@MIT.EDU>, notmuch@notmuchmail.org\r
33 Subject: Re: [PATCH 2/5] util: Function to parse boolean term queries\r
34 In-Reply-To: <87obhidxkt.fsf@zancas.localnet>\r
35 References: <1356415076-5692-1-git-send-email-amdragon@mit.edu>\r
36         <1356415076-5692-3-git-send-email-amdragon@mit.edu>\r
37         <87obhidxkt.fsf@zancas.localnet>\r
38 User-Agent: Notmuch/0.14+213~g4af1ac6 (http://notmuchmail.org) Emacs/24.2.1\r
39         (x86_64-pc-linux-gnu)\r
40 Date: Tue, 25 Dec 2012 10:34:19 -0400\r
41 Message-ID: <87ip7qdwus.fsf@zancas.localnet>\r
42 MIME-Version: 1.0\r
43 Content-Type: text/plain\r
44 X-Spam_bar: -\r
45 X-BeenThere: notmuch@notmuchmail.org\r
46 X-Mailman-Version: 2.1.13\r
47 Precedence: list\r
48 List-Id: "Use and development of the notmuch mail system."\r
49         <notmuch.notmuchmail.org>\r
50 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
51         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
52 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
53 List-Post: <mailto:notmuch@notmuchmail.org>\r
54 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
55 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
56         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
57 X-List-Received-Date: Tue, 25 Dec 2012 14:34:34 -0000\r
58 \r
59 David Bremner <david@tethera.net> writes:\r
60 >\r
61 > So if there is no quote, we skip the part after the ':'? I guess I\r
62 > probably missed something because that doesn't sound like the intended\r
63 > behaviour.\r
64 \r
65 Indeed the following addition to the test shows it works fine in\r
66 context. So I guess I just don't follow this control flow very well.\r
67 \r
68 diff --git a/test/dump-restore b/test/dump-restore\r
69 index aecc393..f9ae5b3 100755\r
70 --- a/test/dump-restore\r
71 +++ b/test/dump-restore\r
72 @@ -200,6 +200,8 @@ a\r
73  # the next non-comment line should report an an empty tag error for\r
74  # batch tagging, but not for restore\r
75  + +e -- id:20091117232137.GA7669@griffis1.net\r
76 +# valid id, but warning about missing message\r
77 ++e id:missing_message_id\r
78  EOF\r
79  \r
80  cat <<EOF > EXPECTED\r
81 @@ -211,6 +213,7 @@ Warning: no query string after -- [+c +d --]\r
82  Warning: hex decoding of tag %zz failed [+%zz -- id:whatever]\r
83  Warning: cannot parse query: id:"\r
84  Warning: not an id query: tag:abc\r
85 +Warning: cannot apply tags to missing message: missing_message_id\r
86  EOF\r
87  \r
88  test_expect_equal_file EXPECTED OUTPUT\r