diff options
author | Amin Bandali <bandali@gnu.org> | 2019-10-18 01:37:55 -0400 |
---|---|---|
committer | Amin Bandali <bandali@gnu.org> | 2019-10-18 01:37:55 -0400 |
commit | e9abd82c0c8a08387f4cbbdf41ffcb995d9f295f (patch) | |
tree | 9907cc0ae10792937c59a9a42a612c2b08b559f4 | |
parent | 639bdc53e77ac4c2f7c3eb6f68539b5009e053ac (diff) | |
download | configs-e9abd82c0c8a08387f4cbbdf41ffcb995d9f295f.tar.gz configs-e9abd82c0c8a08387f4cbbdf41ffcb995d9f295f.tar.xz configs-e9abd82c0c8a08387f4cbbdf41ffcb995d9f295f.zip |
emacs: don’t auto sign messages for now, sign replies to signed msgs
TODO: more elaborate set up for when to (auto) sign messages
-rw-r--r-- | .emacs.d/init.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/init.el b/.emacs.d/init.el index dafb120..af07d11 100644 --- a/.emacs.d/init.el +++ b/.emacs.d/init.el @@ -2304,7 +2304,8 @@ https://bandali.eu.org") Systems Committee Computer Science Club, University of Waterloo https://csclub.uwaterloo.ca/~abandali") - (setq gnus-posting-styles + (setq gnus-message-replysign t + gnus-posting-styles '((".*" (address "bandali@gnu.org") (signature b/gnu-signature) @@ -2331,7 +2332,8 @@ https://csclub.uwaterloo.ca/~abandali") (address "bandali@csclub.uwaterloo.ca") (signature b/csc-signature) (gcc "nnimap+csc:Sent")))) - :hook (gnus-message-setup . mml-secure-message-sign)) + ;; :hook (gnus-message-setup . mml-secure-message-sign) + ) (use-feature gnus-topic :hook (gnus-group-mode . gnus-topic-mode) |