* bug#21947: 24.5; epa: option for always replace encrypted text without asking
@ 2015-11-17 22:04 Christian Schwarzgruber
2015-11-18 2:05 ` Daiki Ueno
0 siblings, 1 reply; 8+ messages in thread
From: Christian Schwarzgruber @ 2015-11-17 22:04 UTC (permalink / raw)
To: 21947
[-- Attachment #1: Type: text/plain, Size: 635 bytes --]
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256
Hey,
I would like to provide a patch for a new functionality in epa.el.
When I get a new encrypted email and I hit `C-c C-e d' (epa-mail-decrypt) epa
asks, if I want replace the original text. Which in my opinion is a bit
superfluous in this case. This will become especially unpleasant once the
auto-decrypt functionality is implemented in mu/mu4e.
So I patched epa.el and added a boolean `defcustom', when set to `t',
the text will always be replaced without asking.
Thank you for your attention!
- --
Christian Schwarzgruber
E: c.schwarzgruber.cs@gmail.com
GPG key ID: C57AB673
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-lisp-epa.el-add-option-to-always-replace-original-te.patch --]
[-- Type: text/x-patch, Size: 1173 bytes --]
From ce12716f1c2760fd356aadf0fffff118fd5643d9 Mon Sep 17 00:00:00 2001
From: Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com>
Date: Sun, 15 Nov 2015 22:31:41 +0100
Subject: [PATCH] lisp/epa.el: add option to always replace original text
---
lisp/epa.el | 8 +++++++-
1 file changed, 7 insertions(+), 1 deletion(-)
diff --git a/lisp/epa.el b/lisp/epa.el
index 9f112c4..af5688b 100644
--- a/lisp/epa.el
+++ b/lisp/epa.el
@@ -34,6 +34,11 @@ epa
:link '(custom-manual "(epa) Top")
:group 'epg)
+(defcustom epa-always-replace-original-text nil
+ "Always replace original text with decrypted."
+ :type 'boolean
+ :group 'epa)
+
(defcustom epa-popup-info-window t
"If non-nil, display status information from epa commands in another window."
:type 'boolean
@@ -872,7 +877,8 @@ epa-decrypt-region
(with-current-buffer (funcall make-buffer-function)
(let ((inhibit-read-only t))
(insert plain)))
- (if (y-or-n-p "Replace the original text? ")
+ (if (or epa-always-replace-original-text
+ (y-or-n-p "Replace the original text? "))
(let ((inhibit-read-only t))
(delete-region start end)
(goto-char start)
--
2.5.0
[-- Attachment #3: Type: text/plain, Size: 819 bytes --]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2
iQIcBAEBCAAGBQJWS6R9AAoJEJpBtqnFerZzEHcP/jbW5atRNXOoZ7QYrt+p8EJA
xeVUdVEBXmsbCp+lRcMSSrrMG84/cZQF2zgjOQd/zqcW4S3L7KU4d/NdCk2Sr5vL
wDZwIn61W6mTVDsrOUcwVZOACeunin4ODCO7yeGQcnzI/+hEOEzGHBEVViwCHTYL
RNdzsQZq6RSR4y7HTqVziuGWwknESqhNx4CzUSnfwkB5EgPgAHRjCF4kT39ujqGS
xnIQvs1zt3emNcgRJ/Vga1awKEeroC0dsvKCWYFvQIJghExyyKZWdl07oFUq5U8f
J0LybrVBwPIXcu91v40aeOplZv00A+KfUJnk0drqC54xZ8CGTuep0qLTCi4z5vyQ
ITbOtkB95Ps/9b9JOh4ZgET2pn7aQADfs+sBJ8nykCxF41d93tlXrWFbAGLVPuh0
ayYOl/MX1hi9dexacAA6FcjERuLwwiHXwQ18Y/OGuYBhGh4khmNOWsvJrHDpDOLx
Wre9Xaw9lfVg4KkOW8Eqha1xJItHiTo6V0jSBXM7jhjqAMlXCbLZ201yQaarRPPw
+227tLhuSAPCWxhcHF3+uB/jnXj97PElTiEQh9fzqAOm8dv2UueHg7HyK5REUDCr
8r+JL1lxoaubupvWA1sQfoWYOLDiIMZQ2zf6KbzsxIrwM+tSdCjivCJtvzBrHMrw
zUzgtTS3KbzW6bo1E061
=CPhT
-----END PGP SIGNATURE-----
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2015-11-17 22:04 bug#21947: 24.5; epa: option for always replace encrypted text without asking Christian Schwarzgruber
@ 2015-11-18 2:05 ` Daiki Ueno
2015-11-18 21:39 ` Christian Schwarzgruber
0 siblings, 1 reply; 8+ messages in thread
From: Daiki Ueno @ 2015-11-18 2:05 UTC (permalink / raw)
To: Christian Schwarzgruber; +Cc: 21947
Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> writes:
> When I get a new encrypted email and I hit `C-c C-e d' (epa-mail-decrypt) epa
> asks, if I want replace the original text. Which in my opinion is a bit
> superfluous in this case. This will become especially unpleasant once the
> auto-decrypt functionality is implemented in mu/mu4e.
That sounds reasonable.
> So I patched epa.el and added a boolean `defcustom', when set to `t',
> the text will always be replaced without asking.
I tend to make this a choice of three: never (nil), ask (a symbol),
always (t). Would that make sense?
Also please adjust `epa-verify-region' as well.
Regards,
--
Daiki Ueno
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2015-11-18 2:05 ` Daiki Ueno
@ 2015-11-18 21:39 ` Christian Schwarzgruber
2015-11-19 3:12 ` Daiki Ueno
0 siblings, 1 reply; 8+ messages in thread
From: Christian Schwarzgruber @ 2015-11-18 21:39 UTC (permalink / raw)
To: Daiki Ueno; +Cc: 21947
[-- Attachment #1: Type: text/plain, Size: 932 bytes --]
I made all the changes, hope I did it the way you guys want it (see inline patch).
I tested all possible options, with `epa-decrypt-region', as well as
epa-verify-region.
Daiki Ueno <ueno@gnu.org> writes:
> Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> writes:
>
>> When I get a new encrypted email and I hit `C-c C-e d' (epa-mail-decrypt) epa
>> asks, if I want replace the original text. Which in my opinion is a bit
>> superfluous in this case. This will become especially unpleasant once the
>> auto-decrypt functionality is implemented in mu/mu4e.
>
> That sounds reasonable.
>
>> So I patched epa.el and added a boolean `defcustom', when set to `t',
>> the text will always be replaced without asking.
>
> I tend to make this a choice of three: never (nil), ask (a symbol),
> always (t). Would that make sense?
>
> Also please adjust `epa-verify-region' as well.
>
> Regards,
Regards,
--
Christian Schwarzgruber
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-lisp-epa.el-add-defcustom-to-replace-original-text.patch --]
[-- Type: text/x-patch, Size: 1906 bytes --]
From 9041f5bbe05cbf28dafdfb31f6f731e9ea7e023c Mon Sep 17 00:00:00 2001
From: Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com>
Date: Sun, 15 Nov 2015 22:31:41 +0100
Subject: [PATCH] lisp/epa.el: add `defcustom' to replace original text
Possible options are: `ask', `always', `never'. Default is `ask'.
---
lisp/epa.el | 21 +++++++++++++++++++--
1 file changed, 19 insertions(+), 2 deletions(-)
diff --git a/lisp/epa.el b/lisp/epa.el
index 9f112c4..794fa5f 100644
--- a/lisp/epa.el
+++ b/lisp/epa.el
@@ -34,6 +34,15 @@ epa
:link '(custom-manual "(epa) Top")
:group 'epg)
+(defcustom epa-replace-original-text 'ask
+ "Whether the original text shall be replaced by the decrypted.
+
+Possible options are: `never', `ask' and `always'."
+ :type '(choice (const :tag "never" nil)
+ (const ask)
+ (const :tag "always" t))
+ :group 'epa)
+
(defcustom epa-popup-info-window t
"If non-nil, display status information from epa commands in another window."
:type 'boolean
@@ -872,7 +881,11 @@ epa-decrypt-region
(with-current-buffer (funcall make-buffer-function)
(let ((inhibit-read-only t))
(insert plain)))
- (if (y-or-n-p "Replace the original text? ")
+ (if (cond
+ ((eq 'ask epa-replace-original-text)
+ (y-or-n-p "Replace the original text? "))
+ ((null epa-replace-original-text) nil)
+ (t t))
(let ((inhibit-read-only t))
(delete-region start end)
(goto-char start)
@@ -968,7 +981,11 @@ epa-verify-region
(or coding-system-for-read
(get-text-property start 'epa-coding-system-used)
'undecided)))
- (if (y-or-n-p "Replace the original text? ")
+ (if (cond
+ ((eq 'ask epa-replace-original-text)
+ (y-or-n-p "Replace the original text? "))
+ ((null epa-replace-original-text) nil)
+ (t t))
(let ((inhibit-read-only t)
buffer-read-only)
(delete-region start end)
--
2.5.0
^ permalink raw reply related [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2015-11-18 21:39 ` Christian Schwarzgruber
@ 2015-11-19 3:12 ` Daiki Ueno
2015-11-19 7:53 ` Christian Schwarzgruber
2017-04-06 21:17 ` Christian Schwarzgruber
0 siblings, 2 replies; 8+ messages in thread
From: Daiki Ueno @ 2015-11-19 3:12 UTC (permalink / raw)
To: Christian Schwarzgruber; +Cc: 21947-done
Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> writes:
> I made all the changes, hope I did it the way you guys want it (see
> inline patch).
>
> I tested all possible options, with `epa-decrypt-region', as well as
> epa-verify-region.
Thanks. I have modified it a bit (to accept any symbol value for "ask")
and pushed it to the git master, assuming that the change is small
enough not to require copyright assignment.
Since this is a self-contained change, is it okay to push it to
emacs-25?
Regards,
--
Daiki Ueno
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2015-11-19 3:12 ` Daiki Ueno
@ 2015-11-19 7:53 ` Christian Schwarzgruber
2017-04-06 21:17 ` Christian Schwarzgruber
1 sibling, 0 replies; 8+ messages in thread
From: Christian Schwarzgruber @ 2015-11-19 7:53 UTC (permalink / raw)
To: Daiki Ueno; +Cc: 21947-done
Daiki Ueno <ueno@gnu.org> writes:
> Thanks. I have modified it a bit (to accept any symbol value for "ask")
> and pushed it to the git master, assuming that the change is small
> enough not to require copyright assignment.
I Took a look at the changes you made, thanks! I just have started learning
emacs lisp.
I haven't made any paper work so far. If it is required please let me know it
and I will fill out the copyright assignment and send it to the FSF.
> Since this is a self-contained change, is it okay to push it to
> emacs-25?
Hmmmm, I'm still using emacs 24.5.1 (Fedora), but I can patch it my self until
emacs-25 lands in Fedora, this should be, hopefully, quite soon (Assuming
emacs-25 is officially released).
Regards,
--
Christian Schwarzgruber
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2015-11-19 3:12 ` Daiki Ueno
2015-11-19 7:53 ` Christian Schwarzgruber
@ 2017-04-06 21:17 ` Christian Schwarzgruber
2017-04-06 22:12 ` npostavs
1 sibling, 1 reply; 8+ messages in thread
From: Christian Schwarzgruber @ 2017-04-06 21:17 UTC (permalink / raw)
To: Daiki Ueno; +Cc: 21947-done
Hey,
my bug report has been closed quite a while back now. The provided patch has
been landed in Emacs (master). Will this patch make it into Emacs 25.3, maybe?
Thank you for your attention!
Christian Schwarzgruber
Daiki Ueno <ueno@gnu.org> writes:
> Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> writes:
>
>> I made all the changes, hope I did it the way you guys want it (see
>> inline patch).
>>
>> I tested all possible options, with `epa-decrypt-region', as well as
>> epa-verify-region.
>
> Thanks. I have modified it a bit (to accept any symbol value for "ask")
> and pushed it to the git master, assuming that the change is small
> enough not to require copyright assignment.
>
> Since this is a self-contained change, is it okay to push it to
> emacs-25?
>
> Regards,
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2017-04-06 21:17 ` Christian Schwarzgruber
@ 2017-04-06 22:12 ` npostavs
2017-04-07 9:48 ` Christian Schwarzgruber
0 siblings, 1 reply; 8+ messages in thread
From: npostavs @ 2017-04-06 22:12 UTC (permalink / raw)
To: Christian Schwarzgruber; +Cc: 21947, Daiki Ueno
Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> writes:
>
> my bug report has been closed quite a while back now. The provided patch has
> been landed in Emacs (master). Will this patch make it into Emacs 25.3, maybe?
Hard to say before there has even been a decision about whether to
release 25.3 at all.
^ permalink raw reply [flat|nested] 8+ messages in thread
* bug#21947: 24.5; epa: option for always replace encrypted text without asking
2017-04-06 22:12 ` npostavs
@ 2017-04-07 9:48 ` Christian Schwarzgruber
0 siblings, 0 replies; 8+ messages in thread
From: Christian Schwarzgruber @ 2017-04-07 9:48 UTC (permalink / raw)
To: 21947; +Cc: Daiki Ueno, npostavs
Ok, just wanted to make sure it has not been lost.
Thanks!
Christian Schwarzgruber
npostavs@users.sourceforge.net writes:
> Christian Schwarzgruber <c.schwarzgruber.cs@gmail.com> writes:
>>
>> my bug report has been closed quite a while back now. The provided patch has
>> been landed in Emacs (master). Will this patch make it into Emacs 25.3, maybe?
>
> Hard to say before there has even been a decision about whether to
> release 25.3 at all.
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2017-04-07 9:48 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-17 22:04 bug#21947: 24.5; epa: option for always replace encrypted text without asking Christian Schwarzgruber
2015-11-18 2:05 ` Daiki Ueno
2015-11-18 21:39 ` Christian Schwarzgruber
2015-11-19 3:12 ` Daiki Ueno
2015-11-19 7:53 ` Christian Schwarzgruber
2017-04-06 21:17 ` Christian Schwarzgruber
2017-04-06 22:12 ` npostavs
2017-04-07 9:48 ` Christian Schwarzgruber
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/emacs.git
https://git.savannah.gnu.org/cgit/emacs/org-mode.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.