summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJSDurand <mmemmew@gmail.com>2021-03-06 14:58:03 +0800
committerJSDurand <mmemmew@gmail.com>2021-03-06 14:58:03 +0800
commit9e053a0dc4b771ef8838ae8e1068c08f1666fd1c (patch)
tree1b6b2b7ada7257606a55136318e79e9b8ab487ba
parentf9f272c614f75878d012f5d655393cc73e319321 (diff)
Encryption configurations and aliases
* gnus-conf.el (mml-secure-openpgp-encrypt-to-self): So that I can see my own encrypted mails. (gnus-buttonized-mime-types): To see signature verification results. (mm-decrypt-option): Automatic decryption. (mm-verify-option): Automatic verification. (message-mail-alias-type): Use abbreviations for message headers.
-rw-r--r--gnus-conf.el17
1 files changed, 17 insertions, 0 deletions
diff --git a/gnus-conf.el b/gnus-conf.el
index 9f8084e..3775081 100644
--- a/gnus-conf.el
+++ b/gnus-conf.el
@@ -15,6 +15,23 @@
;; (nnimap-server-port 143))
))
+;; To be able to see the encrypted mails sent by me.
+
+(setq mml-secure-openpgp-encrypt-to-self t)
+
+;; mail aliases
+
+(setq message-mail-alias-type 'abbrev)
+
+;; Decryptions and signatures
+
+(setq gnus-buttonized-mime-types '("multipart/signed" "multipart/alternative"))
+
+(setq mm-decrypt-option 'known)
+
+(setq mm-verify-option 'known)
+
+
;; Update by mu4e
(declare-function #'mu4e-update-mail-and-index "mu4e" (RUN-IN-BACKGROUND))