configure mu4e

This commit is contained in:
Mateus Pinto Rodrigues
2019-12-09 18:11:21 -03:00
parent 696ab1d5ab
commit 40a2898f19

View File

@@ -30,7 +30,14 @@
;; SMTP configuration ;; SMTP configuration
(setq message-send-mail-function 'smtpmail-send-it (setq message-send-mail-function 'smtpmail-send-it
user-mail-address "mprodrigues@posteo.net" smtpmail-smtp-user "mprodrigues@posteo.net"
smtpmail-default-smtp-server "posteo.de" smtpmail-default-smtp-server "posteo.de"
smtpmail-smtp-server "posteo.de" smtpmail-smtp-server "posteo.de"
smtpmail-smtp-service 587) smtpmail-smtp-service 587)
;; Sign emails with own key as well
(require 'epg-config)
(setq mml2015-use 'epg
epg-user-id "gpg_key_id"
mml2015-encrypt-to-self t
mml2015-sign-with-sender t)