Re: [PATCH v4 09/16] index encrypted parts when asked.
[notmuch-archives.git] / b3 / 916cc510d20ae282b2591f1da6895a3a5eaeed
1 Return-Path: <todd@electricoding.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 CAF46431FD2\r
6         for <notmuch@notmuchmail.org>; Thu,  8 Jan 2015 17:50:03 -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: 2.438\r
10 X-Spam-Level: **\r
11 X-Spam-Status: No, score=2.438 tagged_above=-999 required=5\r
12         tests=[DNS_FROM_AHBL_RHSBL=2.438] 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 gbrShZVHClqh for <notmuch@notmuchmail.org>;\r
16         Thu,  8 Jan 2015 17:50:00 -0800 (PST)\r
17 X-Greylist: delayed 1820 seconds by postgrey-1.32 at olra;\r
18         Thu, 08 Jan 2015 17:50:00 PST\r
19 Received: from s75.web-hosting.com (s75.web-hosting.com [198.187.31.9])\r
20         (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))\r
21         (No client certificate requested)\r
22         by olra.theworths.org (Postfix) with ESMTPS id 94211431FC0\r
23         for <notmuch@notmuchmail.org>; Thu,  8 Jan 2015 17:50:00 -0800 (PST)\r
24 Received: from user-69-73-37-128.knology.net ([69.73.37.128]:54158\r
25         helo=localhost.localdomain)\r
26         by server75.web-hosting.com with esmtpsa (UNKNOWN:AES128-SHA256:128)\r
27         (Exim 4.82) (envelope-from <todd@electricoding.com>)\r
28         id 1Y9OEk-000jfJ-R6; Thu, 08 Jan 2015 20:19:39 -0500\r
29 From: Todd <todd@electricoding.com>\r
30 To: notmuch@notmuchmail.org\r
31 Subject: [PATCH] Use the message cite variable instead of a hard coded\r
32  function\r
33 Date: Thu,  8 Jan 2015 19:19:07 -0600\r
34 Message-Id: <1420766347-3692-1-git-send-email-todd@electricoding.com>\r
35 X-Mailer: git-send-email 1.9.1\r
36 X-AntiAbuse: This header was added to track abuse,\r
37         please include it with any abuse report\r
38 X-AntiAbuse: Primary Hostname - server75.web-hosting.com\r
39 X-AntiAbuse: Original Domain - notmuchmail.org\r
40 X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12]\r
41 X-AntiAbuse: Sender Address Domain - electricoding.com\r
42 X-Get-Message-Sender-Via: server75.web-hosting.com: authenticated_id:\r
43         todd@electricoding.com\r
44 X-Source: \r
45 X-Source-Args: \r
46 X-Source-Dir: \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: Fri, 09 Jan 2015 01:50:03 -0000\r
60 \r
61 ---\r
62  emacs/notmuch-mua.el | 6 +++---\r
63  1 file changed, 3 insertions(+), 3 deletions(-)\r
64 \r
65 diff --git a/emacs/notmuch-mua.el b/emacs/notmuch-mua.el\r
66 index 2c58886..e90ca55 100644\r
67 --- a/emacs/notmuch-mua.el\r
68 +++ b/emacs/notmuch-mua.el\r
69 @@ -220,8 +220,8 @@ list."\r
70             (date (plist-get original-headers :Date))\r
71             (start (point)))\r
72  \r
73 -       ;; message-cite-original constructs a citation line based on the From and Date\r
74 -       ;; headers of the original message, which are assumed to be in the buffer.\r
75 +       ;; message-cite-function should construct a citation line based on the From and\r
76 +       ;; Date headers of the original message, which are assumed to be in the buffer.\r
77         (insert "From: " from "\n")\r
78         (insert "Date: " date "\n\n")\r
79  \r
80 @@ -233,7 +233,7 @@ list."\r
81         (set-mark (point))\r
82         (goto-char start)\r
83         ;; Quote the original message according to the user's configured style.\r
84 -       (message-cite-original)))\r
85 +       (funcall message-cite-function)))\r
86  \r
87      ;; Crypto processing based crypto content of the original message\r
88      (when process-crypto\r
89 -- \r
90 1.9.1\r
91 \r