Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / b0 / f82bc677739e0cedbff2d97baf09c00918e43c
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 olra.theworths.org (Postfix) with ESMTP id 1AB28431FAF\r
6         for <notmuch@notmuchmail.org>; Tue, 22 Jul 2014 02:45:45 -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 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 OsiDTdfwQ4ap for <notmuch@notmuchmail.org>;\r
16         Tue, 22 Jul 2014 02:45:37 -0700 (PDT)\r
17 Received: from yantan.tethera.net (yantan.tethera.net [199.188.72.155])\r
18         (using TLSv1 with cipher DHE-RSA-AES128-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 65A0C431FAE\r
21         for <notmuch@notmuchmail.org>; Tue, 22 Jul 2014 02:45:21 -0700 (PDT)\r
22 Received: from remotemail by yantan.tethera.net with local (Exim 4.80)\r
23         (envelope-from <david@tethera.net>)\r
24         id 1X9Wd2-0003dA-1t; Tue, 22 Jul 2014 06:45:00 -0300\r
25 Received: (nullmailer pid 19800 invoked by uid 1000); Tue, 22 Jul 2014\r
26         09:44:52 -0000\r
27 From: David Bremner <david@tethera.net>\r
28 To: Jameson Graef Rollins <jrollins@finestructure.net>, Vagrant Cascadian\r
29         <vagrant@debian.org>, 755544@bugs.debian.org\r
30 Subject: Re: Bug#755544: notmuch-emacs: doesn't check gpg/pgp signatures by\r
31         default\r
32 In-Reply-To: <87iomqxkzp.fsf@servo.finestructure.net>\r
33 References: <20140721223426.GA5250@siren>\r
34  <87silucnfx.fsf@maritornes.cs.unb.ca>\r
35         <87iomqxkzp.fsf@servo.finestructure.net>\r
36 User-Agent: Notmuch/0.18.1+45~gf47eeac (http://notmuchmail.org) Emacs/24.3.1\r
37         (x86_64-pc-linux-gnu)\r
38 Date: Tue, 22 Jul 2014 06:44:52 -0300\r
39 Message-ID: <878unlenhn.fsf@maritornes.cs.unb.ca>\r
40 MIME-Version: 1.0\r
41 Content-Type: text/plain\r
42 Cc: notmuch@notmuchmail.org\r
43 X-BeenThere: notmuch@notmuchmail.org\r
44 X-Mailman-Version: 2.1.13\r
45 Precedence: list\r
46 List-Id: "Use and development of the notmuch mail system."\r
47         <notmuch.notmuchmail.org>\r
48 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
50 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
51 List-Post: <mailto:notmuch@notmuchmail.org>\r
52 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
53 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
55 X-List-Received-Date: Tue, 22 Jul 2014 09:45:45 -0000\r
56 \r
57 Jameson Graef Rollins <jrollins@finestructure.net> writes:\r
58 \r
59 > On Mon, Jul 21 2014, David Bremner <david@tethera.net> wrote:\r
60 >> notmuch folks: it seems that in vagrant's message, and several others I\r
61 >> checked, it notmuch-crypto-process-mime==nil, then no signature button\r
62 >> is created at all.\r
63 >\r
64 > Yes, this is true.  The signature button is pretty meaningless if we're\r
65 > not processing the signature.\r
66 >\r
67 > Maybe instead by default we could have a signature button that opens up\r
68 > a notmuch-crypto-process-mime customization buffer?\r
69 >\r
70 > jamie.\r
71 \r
72 looking at the source, there is supposed to be some button:\r
73 \r
74 ,----\r
75 | (defun notmuch-show-insert-part-multipart/signed (msg part content-type nth depth button)\r
76 |   (button-put button 'face 'notmuch-crypto-part-header)\r
77 |   ;; add signature status button if sigstatus provided\r
78 |   (if (plist-member part :sigstatus)\r
79 |       (let* ((from (notmuch-show-get-header :From msg))\r
80 |            (sigstatus (car (plist-get part :sigstatus))))\r
81 |       (notmuch-crypto-insert-sigstatus-button sigstatus from))\r
82 |     ;; if we're not adding sigstatus, tell the user how they can get it\r
83 |     (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic MIME parts."))\r
84 `----\r