Re: Missing headers when forwarding html message as RFC822
[notmuch-archives.git] / d4 / ae1ea637bd5a02b784a72a1691060d072c3941
1 Return-Path: <david@tethera.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 11C5D6DE0C81\r
6  for <notmuch@notmuchmail.org>; Mon, 14 Dec 2015 12:03:22 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at cworth.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.31\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.31 tagged_above=-999 required=5 tests=[AWL=0.241, \r
12  RP_MATCHES_RCVD=-0.55, SPF_PASS=-0.001] 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 jPBRSKWmeWnL for <notmuch@notmuchmail.org>;\r
16  Mon, 14 Dec 2015 12:03:20 -0800 (PST)\r
17 Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197])\r
18  by arlo.cworth.org (Postfix) with ESMTPS id 1B1856DE0231\r
19  for <notmuch@notmuchmail.org>; Mon, 14 Dec 2015 12:03:20 -0800 (PST)\r
20 Received: from remotemail by fethera.tethera.net with local (Exim 4.84)\r
21  (envelope-from <david@tethera.net>)\r
22  id 1a8ZKz-0004in-Kt; Mon, 14 Dec 2015 15:03:13 -0500\r
23 Received: (nullmailer pid 24936 invoked by uid 1000);\r
24  Mon, 14 Dec 2015 20:03:14 -0000\r
25 From: David Bremner <david@tethera.net>\r
26 To: notmuch@notmuchmail.org\r
27 Subject: Re: [Patch v3 4/8] test: initial tests for S/MIME and notmuch-emacs\r
28 In-Reply-To: <1450100337-31655-5-git-send-email-david@tethera.net>\r
29 References: <1450100337-31655-1-git-send-email-david@tethera.net>\r
30  <1450100337-31655-5-git-send-email-david@tethera.net>\r
31 User-Agent: Notmuch/0.21+5~gca076ce (http://notmuchmail.org) Emacs/24.4.1\r
32  (x86_64-pc-linux-gnu)\r
33 Date: Mon, 14 Dec 2015 16:03:14 -0400\r
34 Message-ID: <87h9jkajct.fsf@tesseract.cs.unb.ca>\r
35 MIME-Version: 1.0\r
36 Content-Type: text/plain\r
37 X-BeenThere: notmuch@notmuchmail.org\r
38 X-Mailman-Version: 2.1.20\r
39 Precedence: list\r
40 List-Id: "Use and development of the notmuch mail system."\r
41  <notmuch.notmuchmail.org>\r
42 List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
43  <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
44 List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
45 List-Post: <mailto:notmuch@notmuchmail.org>\r
46 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
47 List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
48  <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
49 X-List-Received-Date: Mon, 14 Dec 2015 20:03:22 -0000\r
50 \r
51 David Bremner <david@tethera.net> writes:\r
52 \r
53 > Test the ability of notmuch-mua-mail to send S/MIME signed (and\r
54 > encrypted) messages; this really relies on existing functionality in\r
55 > message-mode.\r
56 >\r
57 > The generated keys and messages will later be useful for testing the\r
58 > notmuch CLI.\r
59 > ---\r
60 >  test/T355-smime.sh      | 42 +++++++++++++++++++++++++++++++++++++\r
61 >  test/smime/README       |  7 +++++++\r
62 >  test/smime/key+cert.pem | 56 +++++++++++++++++++++++++++++++++++++++++++++++++\r
63 >  test/smime/test.crt     | 19 +++++++++++++++++\r
64 >  test/test-lib.el        | 10 +++++++++\r
65 >  test/test-lib.sh        |  1 +\r
66 >  6 files changed, 135 insertions(+)\r
67 >  create mode 100755 test/T355-smime.sh\r
68 >  create mode 100644 test/smime/README\r
69 >  create mode 100644 test/smime/key+cert.pem\r
70 >  create mode 100644 test/smime/test.crt\r
71 >\r
72 > diff --git a/test/T355-smime.sh b/test/T355-smime.sh\r
73 > new file mode 100755\r
74 > index 0000000..e3419d6\r
75 > --- /dev/null\r
76 > +++ b/test/T355-smime.sh\r
77 > @@ -0,0 +1,42 @@\r
78 > +#!/usr/bin/env bash\r
79 > +\r
80 > +test_description='S/MIME signature verification and decryption'\r
81 > +. ./test-lib.sh\r
82 \r
83 Apparently this needs\r
84 \r
85 unset GPG_AGENT_INFO\r
86 \r
87 at the beginning to avoid getting confused by a potential pre-2.1\r
88 gpg-agent.\r
89 \r