[RFC PATCH] test: add devel/test-in-docker.sh
[notmuch-archives.git] / cb / 4424cf4c1db80a7621574afe8f47e763f3d99e
1 Return-Path: <dkg@fifthhorseman.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 arlo.cworth.org (Postfix) with ESMTP id A395D6DE01EA\r
6  for <notmuch@notmuchmail.org>; Sun,  3 Jul 2016 06:28:40 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.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 arlo.cworth.org ([127.0.0.1])\r
14  by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
15  with ESMTP id I8kJzh16R5f8 for <notmuch@notmuchmail.org>;\r
16  Sun,  3 Jul 2016 06:28:32 -0700 (PDT)\r
17 Received: from che.mayfirst.org (che.mayfirst.org [162.247.75.118])\r
18  by arlo.cworth.org (Postfix) with ESMTP id AC1736DE00F5\r
19  for <notmuch@notmuchmail.org>; Sun,  3 Jul 2016 06:28:31 -0700 (PDT)\r
20 Received: from fifthhorseman.net (c-174-62-194-216.hsd1.ct.comcast.net\r
21  [174.62.194.216])\r
22  by che.mayfirst.org (Postfix) with ESMTPSA id 1CFDAF98B;\r
23  Sun,  3 Jul 2016 09:28:30 -0400 (EDT)\r
24 Received: by fifthhorseman.net (Postfix, from userid 1000)\r
25  id 3447920344; Sun,  3 Jul 2016 09:28:29 -0400 (EDT)\r
26 From: Daniel Kahn Gillmor <dkg@fifthhorseman.net>\r
27 To: Xu Wang <xuwang762@gmail.com>, notmuch@notmuchmail.org\r
28 Subject: Re: ask notmuch to find back "reply-to's"\r
29 In-Reply-To:\r
30  <CAJhTkNiWvED4+7kAEWxWOD2PLyskG27vTfSbmZhJFUJcoBqXag@mail.gmail.com>\r
31 References:\r
32  <CAJhTkNiWvED4+7kAEWxWOD2PLyskG27vTfSbmZhJFUJcoBqXag@mail.gmail.com>\r
33 User-Agent: Notmuch/0.22+69~gd812194 (https://notmuchmail.org) Emacs/24.5.1\r
34  (x86_64-pc-linux-gnu)\r
35 Date: Sun, 03 Jul 2016 09:28:29 -0400\r
36 Message-ID: <87inwmyhoi.fsf@alice.fifthhorseman.net>\r
37 MIME-Version: 1.0\r
38 Content-Type: text/plain\r
39 X-BeenThere: notmuch@notmuchmail.org\r
40 X-Mailman-Version: 2.1.20\r
41 Precedence: list\r
42 List-Id: "Use and development of the notmuch mail system."\r
43  <notmuch.notmuchmail.org>\r
44 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
45  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
46 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
47 List-Post: <mailto:notmuch@notmuchmail.org>\r
48 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
49 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
50  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
51 X-List-Received-Date: Sun, 03 Jul 2016 13:28:40 -0000\r
52 \r
53 On Sat 2016-07-02 20:28:41 -0400, Xu Wang wrote:\r
54 > Hello all,\r
55 >\r
56 > I have a situation where sometimes I sync a later message. For\r
57 > example, the following happens on times:\r
58 >\r
59 > 1a. sync message 1.\r
60 > 1b. not much new\r
61 > 2a. sync message 3 (which replied to message 2)\r
62 > 2b. not much new\r
63 > 3. sync message 2 (which replied to message 1)\r
64 > 3b. not much new\r
65 >\r
66 > This happens because of my workflow of offlineimap. It takes a long\r
67 > time to sync some folders so often I prefer to skip, but sometimes\r
68 > they contain replies.\r
69 \r
70 on most systems, assuming standard headers, notmuch should indeed\r
71 assemble these into the same thread.\r
72 \r
73 the relevant headers are In-Reply-To and References.\r
74 \r
75 Can you show those headers for this example?  If they have these message-IDs:\r
76 \r
77  message 1: XXX\r
78  message 2: YYY\r
79  message 3: ZZZ\r
80 \r
81 then i'd expect the following headers:\r
82 \r
83  message 1:\r
84    Message-Id: XXX\r
85     <no In-Reply-To or References>\r
86  message 2:\r
87    Message-Id: YYY\r
88    In-Reply-To: XXX\r
89    References: XXX\r
90  message 3:\r
91    Message-Id: ZZZ\r
92    In-Reply-To: YYY\r
93    References: XXX, YYY\r
94 \r
95 \r
96 If notmuch has indexed them all, they should all be part of the same\r
97 thread.\r
98 \r
99         --dkg\r