From unknown Tue Jun 24 10:31:40 2025 X-Loop: help-debbugs@gnu.org Subject: bug#8474: 23.2; smime feature requests Resent-From: Arik Mitschang Original-Sender: debbugs-submit-bounces@debbugs.gnu.org Resent-To: owner@debbugs.gnu.org Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Mon, 11 Apr 2011 02:56:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 8474 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: To: 8474@debbugs.gnu.org X-Debbugs-Original-To: bug-gnu-emacs@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.13024905553935 (code B ref -1); Mon, 11 Apr 2011 02:56:01 +0000 Received: (at submit) by debbugs.gnu.org; 11 Apr 2011 02:55:55 +0000 Received: from localhost ([127.0.0.1] helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Q97IA-00011Q-Oq for submit@debbugs.gnu.org; Sun, 10 Apr 2011 22:55:55 -0400 Received: from eggs.gnu.org ([140.186.70.92]) by debbugs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1Q97I7-00011D-EG for submit@debbugs.gnu.org; Sun, 10 Apr 2011 22:55:53 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q97I1-0002HA-7j for submit@debbugs.gnu.org; Sun, 10 Apr 2011 22:55:46 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00,FREEMAIL_FROM, T_RP_MATCHES_RCVD,T_TO_NO_BRKTS_FREEMAIL,T_TVD_MIME_NO_HEADERS autolearn=unavailable version=3.3.1 Received: from lists.gnu.org ([199.232.76.165]:54969) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q97I1-0002H1-3b for submit@debbugs.gnu.org; Sun, 10 Apr 2011 22:55:45 -0400 Received: from [140.186.70.92] (port=37916 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q97Hz-0001i8-Qo for bug-gnu-emacs@gnu.org; Sun, 10 Apr 2011 22:55:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q97Hy-0002GY-HH for bug-gnu-emacs@gnu.org; Sun, 10 Apr 2011 22:55:43 -0400 Received: from netdnsprod2.mq.edu.au ([137.111.226.228]:46805) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q97Hx-0002G4-I6 for bug-gnu-emacs@gnu.org; Sun, 10 Apr 2011 22:55:42 -0400 Received: from nobunaga.local ([10.47.32.243]) by netdnsprod2.mq.edu.au (8.13.8/8.13.8) with ESMTP id p3B2tZgL022035; Mon, 11 Apr 2011 12:55:35 +1000 Received: by nobunaga.local (Postfix, from userid 1931570921) id ECA85343A69; Mon, 11 Apr 2011 12:55:34 +1000 (EST) From: Arik Mitschang Date: Mon, 11 Apr 2011 12:55:34 +1000 Message-ID: <41zqc6pqotts2h.fsf@mq.edu.au> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6, seldom 2.4 (older, 4) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 199.232.76.165 X-Spam-Score: -6.6 (------) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.11 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: debbugs-submit-bounces@debbugs.gnu.org Errors-To: debbugs-submit-bounces@debbugs.gnu.org X-Spam-Score: -6.6 (------) --=-=-= I have two feature requests for the smime package included in gnus shipped with emacs. The first is trivial and simply adds the AES encryption standard to that which is supported by emacs smime (openssl supports these, if there are many versions which don't perhaps adding a note the the doc string to check before changing would be appropriate in addition to the change). This change is implemented in the first attached patch. The second is somewhat less trivial, some folks will have there RSA private key not encrypted for whatever reason and it can be fairly annoying to have to enter a password for such keys each time (and in cases where it would not be appropriate to change the password cache time, one would have to). Since I found no real easy way to determine if a key is encrypted other than to open the file and check every time, I added another bit to the smime-keys variable allowing the user to specify if that key is clear or not, and added optional args to the signing and decryption functions along with a helper function that will determine if the key (by email) needs a password or not. This is implemented in the second attached patch. Thanks, -Arik --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=smime-new-sym.diff Content-Description: Patch adding AES cypher specs --- smime.el +++ smime.el @@ -204,6 +204,9 @@ :version "22.1" :type '(choice (const :tag "Triple DES" "-des3") (const :tag "DES" "-des") + (const :tag "AES 256 bits" "-aes256") + (const :tag "AES 192 bits" "-aes192") + (const :tag "AES 128 bits" "-aes128") (const :tag "RC2 40 bits" "-rc2-40") (const :tag "RC2 64 bits" "-rc2-64") (const :tag "RC2 128 bits" "-rc2-128")) --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=smime-with-clearky.diff Content-Description: Patch allowing specification of clear RSA private keys --- smime.el +++ smime.el @@ -152,9 +152,10 @@ The file is assumed to be in PEM format. You can also associate additional certificates to be sent with every message to each address." :type '(repeat (list (string :tag "Mail address") + (boolean :tag "Private key encrypted" :value t) (file :tag "File name") (repeat :tag "Additional certificate files" - (file :tag "File name")))) + (file :tag "File name")))) :group 'smime) (defcustom smime-CA-directory nil @@ -292,7 +296,7 @@ ;; Sign+encrypt region -(defun smime-sign-region (b e keyfile) +(defun smime-sign-region (b e keyfile &optional clearkey) "Sign region with certified key in KEYFILE. If signing fails, the buffer is not modified. Region is assumed to have proper MIME tags. KEYFILE is expected to contain a PEM encoded @@ -304,7 +308,8 @@ (let* ((certfiles (and (cdr-safe keyfile) (cadr keyfile))) (keyfile (or (car-safe keyfile) keyfile)) (buffer (generate-new-buffer " *smime*")) - (passphrase (smime-ask-passphrase (expand-file-name keyfile))) + (passphrase (if clearkey nil + (smime-ask-passphrase (expand-file-name keyfile)))) (tmpfile (smime-make-temp-file "smime"))) (if passphrase (setenv "GNUS_SMIME_PASSPHRASE" passphrase)) @@ -332,7 +337,7 @@ (insert-buffer-substring buffer)) (kill-buffer buffer)))) -(defun smime-encrypt-region (b e certfiles) +(defun smime-encrypt-region (b e certfiles &optional clearkey) "Encrypt region for recipients specified in CERTFILES. If encryption fails, the buffer is not modified. Region is assumed to have proper MIME tags. CERTFILES is a list of filenames, each file @@ -365,19 +370,24 @@ "S/MIME sign BUFFER with key in KEYFILE. KEYFILE should contain a PEM encoded key and certificate." (interactive) - (with-current-buffer (or buffer (current-buffer)) - (unless (smime-sign-region - (point-min) (point-max) - (if keyfile - keyfile - (smime-get-key-with-certs-by-email - (completing-read - (concat "Sign using key" - (if smime-keys - (concat " (default " (caar smime-keys) "): ") - ": ")) - smime-keys nil nil (car-safe (car-safe smime-keys)))))) - (error "Signing failed")))) + (let (keycerts email) + (if keyfile + (setq keycerts keyfile) + (setq email + (completing-read + (concat "Sign using key" + (if smime-keys + (concat " (default " (caar smime-keys) "): ") + ": ")) + smime-keys nil nil (car-safe (car-safe smime-keys)))) + (setq keycerts (smime-get-key-with-certs-by-email email))) + (with-current-buffer (or buffer (current-buffer)) + (unless (smime-sign-region + (point-min) (point-max) + keycerts + (unless keyfile + (smime-get-key-is-clear-by-email email))) + (error "Signing failed"))))) (defun smime-encrypt-buffer (&optional certfiles buffer) "S/MIME encrypt BUFFER for recipients specified in CERTFILES. @@ -431,14 +441,15 @@ (defvar from) -(defun smime-decrypt-region (b e keyfile) +(defun smime-decrypt-region (b e keyfile &optional clearkey) "Decrypt S/MIME message in region between B and E with key in KEYFILE. On success, replaces region with decrypted data and return non-nil. Any details (stderr on success, stdout and stderr on error) are left in the buffer specified by `smime-details-buffer'." (smime-new-details-buffer) (let ((buffer (generate-new-buffer " *smime*")) - CAs (passphrase (smime-ask-passphrase (expand-file-name keyfile))) + CAs (passphrase (if clearkey nil + (smime-ask-passphrase (expand-file-name keyfile)))) (tmpfile (smime-make-temp-file "smime"))) (if passphrase (setenv "GNUS_SMIME_PASSPHRASE" passphrase)) @@ -496,18 +507,24 @@ Any details (stderr on success, stdout and stderr on error) are left in the buffer specified by `smime-details-buffer'." (interactive) - (with-current-buffer (or buffer (current-buffer)) - (smime-decrypt-region - (point-min) (point-max) - (expand-file-name - (or keyfile - (smime-get-key-by-email - (completing-read - (concat "Decipher using key" - (if smime-keys (concat " (default " (caar smime-keys) "): ") - ": ")) - smime-keys nil nil (car-safe (car-safe smime-keys))))))))) - + (let (key email) + (if keyfile + (setq key keyfile) + (setq email + (completing-read + (concat "Decipher using key" + (if smime-keys + (concat " (default " (caar smime-keys) "): ") + ": ")) + smime-keys nil nil (car-safe (car-safe smime-keys)))) + (setq key (smime-get-key-by-email email))) + (with-current-buffer (or buffer (current-buffer)) + (smime-decrypt-region + (point-min) (point-max) + key + (unless keyfile + (smime-get-key-is-clear-by-email email)))))) + ;; Various operations (defun smime-new-details-buffer () @@ -722,10 +739,13 @@ ;; Other functions (defun smime-get-key-by-email (email) - (cadr (assoc email smime-keys))) + (nth 2 (assoc email smime-keys))) (defun smime-get-key-with-certs-by-email (email) - (cdr (assoc email smime-keys))) + (cddr (assoc email smime-keys))) + +(defun smime-get-key-is-clear-by-email (email) + (not (cadr (assoc email smime-keys)))) (provide 'smime) --=-=-=-- From debbugs-submit-bounces@debbugs.gnu.org Mon Jan 20 19:45:41 2020 Received: (at control) by debbugs.gnu.org; 21 Jan 2020 00:45:42 +0000 Received: from localhost ([127.0.0.1]:46308 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ithfp-0002Eq-Mf for submit@debbugs.gnu.org; Mon, 20 Jan 2020 19:45:41 -0500 Received: from ted.gofardesign.uk ([67.225.143.91]:36586) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1ithfo-0002Ee-NS for control@debbugs.gnu.org; Mon, 20 Jan 2020 19:45:41 -0500 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=marxist.se; s=default; h=Subject:From:To:Date:Sender:Reply-To:Message-ID:Cc:MIME-Version :Content-Type:Content-Transfer-Encoding:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=6Utvljibnvbi+LqadKcxYByULLA8PoAy6ohtGHXdYoQ=; b=Ec9KKWDI7kljJztoFEvSGlNR1P v1Snk3920681aKbMtoizQU2V7rk2cL0fgMScRl+qlg+mJiAzPs1AV+8KDkcK+LsrXTPwTggjlz8AS soo4hqVX6ptzXzS1Ryk82/ISeur/COXArWMAqEQEsgsHdgkZza0q8YJc8mIe35uCKdGgyjyLPn25A Zqld4bOj982e+uGE6a4CHcCWi6o/CPrkGJef4maJqnJMpInBS7woRL3MsOH41sj0MyUuxoSZNh0SO KPSh3vX62/g1HSV0VOOHWQawn4GbhHNPox8yQQ0pl5/+BrFvqYWEPYQCxyEaoerDN6eT8kx6aU4bY UglHCkMQ==; Received: from h-70-69.a785.priv.bahnhof.se ([155.4.70.69]:38754 helo=localhost) by ted.gofardesign.uk with esmtpsa (TLSv1.2:ECDHE-RSA-AES256-GCM-SHA384:256) (Exim 4.92) (envelope-from ) id 1ithfj-0016jb-2f for control@debbugs.gnu.org; Mon, 20 Jan 2020 19:45:35 -0500 Date: Tue, 21 Jan 2020 01:45:33 +0100 To: control@debbugs.gnu.org From: Stefan Kangas Subject: control message for bug #8474 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - ted.gofardesign.uk X-AntiAbuse: Original Domain - debbugs.gnu.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - marxist.se X-Get-Message-Sender-Via: ted.gofardesign.uk: authenticated_id: stefan@marxist.se X-Authenticated-Sender: ted.gofardesign.uk: stefan@marxist.se X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: 0.1 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" Message-Id: X-Spam-Score: -1.0 (-) tags 8474 + patch quit From unknown Tue Jun 24 10:31:40 2025 X-Loop: help-debbugs@gnu.org Subject: bug#8474: 23.2; smime feature requests Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Tue, 04 Aug 2020 18:40:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 8474 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Arik Mitschang Cc: 8474@debbugs.gnu.org Received: via spool by 8474-submit@debbugs.gnu.org id=B8474.1596566399847 (code B ref 8474); Tue, 04 Aug 2020 18:40:02 +0000 Received: (at 8474) by debbugs.gnu.org; 4 Aug 2020 18:39:59 +0000 Received: from localhost ([127.0.0.1]:49143 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k31qx-0000Db-AA for submit@debbugs.gnu.org; Tue, 04 Aug 2020 14:39:59 -0400 Received: from quimby.gnus.org ([95.216.78.240]:59496) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k31qu-0000DM-2O for 8474@debbugs.gnu.org; Tue, 04 Aug 2020 14:39:57 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=S+SIH/rhS7VmyTGNiIQLnwO76NCcIYhbq4z6Yf03BTE=; b=LkRkxuDR0QjfAhoJ1ukaOWzj/v gtLArFIJbz/c4YY8gnGezaCFXWM3pA6toEJsYd05wGz3tmwNtQ60mqzCoeH9S3O3NN3kANArBtSY5 10Brqe6h8QldXfxtvIDcDPjawaxfNj96P8DjXiW3ToX6tG1Lw8giJkiFTwdWY1rjOYBc=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k31qk-0002Cm-SF; Tue, 04 Aug 2020 20:39:49 +0200 From: Lars Ingebrigtsen References: <41zqc6pqotts2h.fsf@mq.edu.au> Date: Tue, 04 Aug 2020 20:39:45 +0200 In-Reply-To: <41zqc6pqotts2h.fsf@mq.edu.au> (Arik Mitschang's message of "Mon, 11 Apr 2011 12:55:34 +1000") Message-ID: <877duel0ge.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: (This nine year old bug report has had no attention -- sorry about that.) Arik Mitschang writes: > I have two feature requests for the smime package included in gnus > shipped with emacs. The first is trivial and simply adds the AES > encryption standard to that which is supported by emacs smime [...] Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) (This nine year old bug report has had no attention -- sorry about that.) Arik Mitschang writes: > I have two feature requests for the smime package included in gnus > shipped with emacs. The first is trivial and simply adds the AES > encryption standard to that which is supported by emacs smime (openssl > supports these, if there are many versions which don't perhaps adding a > note the the doc string to check before changing would be appropriate in > addition to the change). This change is implemented in the first > attached patch. I've now applied this to Emacs 28. > The second is somewhat less trivial, some folks will have there RSA > private key not encrypted for whatever reason and it can be fairly > annoying to have to enter a password for such keys each time (and in > cases where it would not be appropriate to change the password cache > time, one would have to). Since I found no real easy way to determine if > a key is encrypted other than to open the file and check every time, I > added another bit to the smime-keys variable allowing the user to > specify if that key is clear or not, and added optional args to the > signing and decryption functions along with a helper function that will > determine if the key (by email) needs a password or not. This is > implemented in the second attached patch. It's been so long since you sent the patch, so I don't know if you're interested in following up on this or not. If not -- I totally understand. But I'm not quite sure I understand the use case. Does the patch auto-decrypt if your private key is without a passphrase? If so, that does indeed seem useful. On the other hand, these days I think everybody uses a gpg agent, so it's less important whether there's a passphrase or not these days, and people chose always-decrypt/ask-before-decrypt independent of whether the private key has a passphrase or not. But I may be misinterpreting you here... -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From unknown Tue Jun 24 10:31:40 2025 X-Loop: help-debbugs@gnu.org Subject: bug#8474: 23.2; smime feature requests Resent-From: Lars Ingebrigtsen Original-Sender: "Debbugs-submit" Resent-CC: bug-gnu-emacs@gnu.org Resent-Date: Wed, 19 Aug 2020 14:05:01 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: followup 8474 X-GNU-PR-Package: emacs X-GNU-PR-Keywords: patch To: Arik Mitschang Cc: 8474@debbugs.gnu.org Received: via spool by 8474-submit@debbugs.gnu.org id=B8474.15978458973376 (code B ref 8474); Wed, 19 Aug 2020 14:05:01 +0000 Received: (at 8474) by debbugs.gnu.org; 19 Aug 2020 14:04:57 +0000 Received: from localhost ([127.0.0.1]:40606 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k8Oi0-0000sO-QG for submit@debbugs.gnu.org; Wed, 19 Aug 2020 10:04:57 -0400 Received: from quimby.gnus.org ([95.216.78.240]:45736) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k8Ohy-0000s8-Mi for 8474@debbugs.gnu.org; Wed, 19 Aug 2020 10:04:55 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Content-Type:MIME-Version:Message-ID:In-Reply-To:Date: References:Subject:Cc:To:From:Sender:Reply-To:Content-Transfer-Encoding: Content-ID:Content-Description:Resent-Date:Resent-From:Resent-Sender: Resent-To:Resent-Cc:Resent-Message-ID:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=1X4OSRpdycBLjCbdxCwJxzTzo2TvAnOTdCvQ9IYZh2k=; b=L+Yocwu9fdb7Zax67i64PPj5hn kAA7RBjOz690H3KGof1TUjnlONGFBU9CZbxkmS0jZWGlrd1Q+wmeNn9n6Cc+CReR7e1pQ+bX+7Q9H tkDLMp0KKImqHXQYJnUMzAQjCWrh3HHSDiJ/wFOIoaE8JXTmZR5RR8moNFfj+XvTFylM=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k8Ohp-0005Vh-CW; Wed, 19 Aug 2020 16:04:48 +0200 From: Lars Ingebrigtsen References: <41zqc6pqotts2h.fsf@mq.edu.au> <877duel0ge.fsf@gnus.org> X-Now-Playing: Pieter Nooten & Michael Brook's _Sleeps With The Fishes_: "Instrumental" Date: Wed, 19 Aug 2020 16:04:44 +0200 In-Reply-To: <877duel0ge.fsf@gnus.org> (Lars Ingebrigtsen's message of "Tue, 04 Aug 2020 20:39:45 +0200") Message-ID: <87imde20lf.fsf@gnus.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.0.50 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: Lars Ingebrigtsen writes: > But I'm not quite sure I understand the use case. Does the patch > auto-decrypt if your private key is without a passphrase? There was no response in two weeks, so I'm closing this bug report. If this is something that still needs work, respond to the debbugs address, and we'll reopen the bug report. Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Lars Ingebrigtsen writes: > But I'm not quite sure I understand the use case. Does the patch > auto-decrypt if your private key is without a passphrase? There was no response in two weeks, so I'm closing this bug report. If this is something that still needs work, respond to the debbugs address, and we'll reopen the bug report. -- (domestic pets only, the antidote for overdose, milk.) bloggy blog: http://lars.ingebrigtsen.no From debbugs-submit-bounces@debbugs.gnu.org Wed Aug 19 10:05:03 2020 Received: (at control) by debbugs.gnu.org; 19 Aug 2020 14:05:03 +0000 Received: from localhost ([127.0.0.1]:40610 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k8Oi7-0000t8-1i for submit@debbugs.gnu.org; Wed, 19 Aug 2020 10:05:03 -0400 Received: from quimby.gnus.org ([95.216.78.240]:45750) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1k8Oi3-0000sG-Qv for control@debbugs.gnu.org; Wed, 19 Aug 2020 10:05:00 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=gnus.org; s=20200322; h=Subject:From:To:Message-Id:Date:Sender:Reply-To:Cc: MIME-Version:Content-Type:Content-Transfer-Encoding:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=sPpX/sxayVxOnjEXZ1EyTwf1nrm47bF2jqn9sIaiGUM=; b=a+d7KAlikZhJLWEGDiD0hkEdPl PtSS0L/IvRNs4QESYgsLbXGB4pyorbshQjMmwP97T7Gtj6fGZiH+TQv3CXE6NNAO3dNOLjDzExzps 1tK2qBCmJv2kHF5KozGzuU6xFgy4xZUi8ZttTORN8qkFMkV3W8Mw+xr5p3+XyGiC+94Y=; Received: from cm-84.212.202.86.getinternet.no ([84.212.202.86] helo=xo) by quimby with esmtpsa (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1k8Ohw-0005Vo-76 for control@debbugs.gnu.org; Wed, 19 Aug 2020 16:04:54 +0200 Date: Wed, 19 Aug 2020 16:04:51 +0200 Message-Id: <87h7sy20l8.fsf@gnus.org> To: control@debbugs.gnu.org From: Lars Ingebrigtsen Subject: control message for bug #8474 X-Spam-Report: Spam detection software, running on the system "quimby.gnus.org", has NOT identified this incoming email as spam. The original message has been attached to this so you can view it or label similar future email. If you have any questions, see @@CONTACT_ADDRESS@@ for details. Content preview: close 8474 quit Content analysis details: (-2.9 points, 5.0 required) pts rule name description ---- ---------------------- -------------------------------------------------- -1.0 ALL_TRUSTED Passed through trusted hosts only via SMTP -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: control X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) close 8474 quit