Re: [PATCH] emacs: address completion, allow sender/recipient and filters
[notmuch-archives.git] / da / 80b90db4701661388f93a46f4854a1d36b594f
1 Return-Path: <novalazy@gmail.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 B68D7431FAF\r
6         for <notmuch@notmuchmail.org>; Wed,  8 Aug 2012 05:28:13 -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.799\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5\r
12         tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1,\r
13         FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
14 Received: from olra.theworths.org ([127.0.0.1])\r
15         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
16         with ESMTP id DyGbtQZGkC0m for <notmuch@notmuchmail.org>;\r
17         Wed,  8 Aug 2012 05:28:13 -0700 (PDT)\r
18 Received: from mail-gh0-f181.google.com (mail-gh0-f181.google.com\r
19         [209.85.160.181]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
20         (No client certificate requested)\r
21         by olra.theworths.org (Postfix) with ESMTPS id 51402431FAE\r
22         for <notmuch@notmuchmail.org>; Wed,  8 Aug 2012 05:28:13 -0700 (PDT)\r
23 Received: by ghz3 with SMTP id 3so879463ghz.26\r
24         for <notmuch@notmuchmail.org>; Wed, 08 Aug 2012 05:28:11 -0700 (PDT)\r
25 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113;\r
26         h=from:to:cc:subject:date:message-id:x-mailer;\r
27         bh=oFJ6PNuq3i4CFXLxaj9G1yMT2AeA6ygrouAQL2DP7w4=;\r
28         b=qHJTRNDdCNZVDXjhH0QF4LbrKPDtTkoo0STKw3nTEdku2i+qDkKv6BKy45+9tXrwh9\r
29         MMk2jwUJC5lqyFMaxx+UxagU9s+Mi0hQoCUrr8xB7fRoOwOoqkT5N6nFsCH/x4fY8Sr1\r
30         HQPw252EwUAVdLLzFm4mmRvA9G8BE9J0j3YU4LdGKwbd0kpM1QEYBIGfp6gc/hYbrZFc\r
31         SWTtIrqDAu9CU3Bg62qiOuIEXvJ+zl/0CDPWK90OiMmsWg/eQ0X+dBsdWBs/sTpOhnaM\r
32         3OyEcBrT2CDkn2W+81l7hdhEsURWZeEt5j7XO1JqwhyUkqIP1JK0nA7eG3tlkRUE8Mh9\r
33         uybw==\r
34 Received: by 10.66.74.100 with SMTP id s4mr33401165pav.27.1344428891254;\r
35         Wed, 08 Aug 2012 05:28:11 -0700 (PDT)\r
36 Received: from localhost (215.42.233.220.static.exetel.com.au.\r
37         [220.233.42.215])\r
38         by mx.google.com with ESMTPS id io1sm13306841pbc.67.2012.08.08.05.28.08\r
39         (version=TLSv1/SSLv3 cipher=OTHER);\r
40         Wed, 08 Aug 2012 05:28:10 -0700 (PDT)\r
41 From: Peter Wang <novalazy@gmail.com>\r
42 To: notmuch@notmuchmail.org\r
43 Subject: [PATCH v2 0/3] indicate length of omitted body content\r
44 Date: Wed,  8 Aug 2012 22:27:49 +1000\r
45 Message-Id: <1344428872-12374-1-git-send-email-novalazy@gmail.com>\r
46 X-Mailer: git-send-email 1.7.4.4\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: Wed, 08 Aug 2012 12:28:13 -0000\r
60 \r
61 The first commit is tangentally related.  An expected test case output\r
62 in test/crypto previously had a filename left unnormalised by\r
63 notmuch_json_show_sanitize because it was not followed by comma.\r
64 The next commit causes the comma to be present, breaking the expected\r
65 output.\r
66 \r
67 In the 2nd commit, a content-transfer-encoding field was added and\r
68 comments clarified.\r
69 \r
70 In the 3rd commit, the content-length of an encrypted attachment had\r
71 to be normalised because it varies between runs.\r
72 \r
73 Peter Wang (3):\r
74   test: normalize only message filenames in show json\r
75   show: indicate length, encoding of omitted body content\r
76   test: conform to content length, encoding fields\r
77 \r
78  devel/schemata   |    9 ++++++++-\r
79  notmuch-show.c   |   14 ++++++++++++++\r
80  test/crypto      |   30 +++++++++++++++++++++---------\r
81  test/json        |    2 +-\r
82  test/multipart   |   11 ++++++-----\r
83  test/test-lib.sh |    2 +-\r
84  6 files changed, 51 insertions(+), 17 deletions(-)\r
85 \r
86 -- \r
87 1.7.4.4\r
88 \r