Update --email

This commit is contained in:
Marcus Kammer 2023-02-11 16:57:18 +01:00
parent 413383a32d
commit ee2de09c0e
Signed by: marcuskammer
GPG key ID: C374817BE285268F

View file

@ -1,14 +1,15 @@
(setq smtpmail-smtp-server "smtp.mailbox.org"
smtpmail-smtp-service 465
smtpmail-stream-type 'starttls
message-send-mail-function 'smtpmail-send-it
smtpmail-stream-type 'ssl
smtpmail-auth-credentials (expand-file-name "~/.authinfo.gpg")
mml-default-sign-method "pgpmime"
mml-default-encrypt-method "pgpmime"
mail-user-agent 'message-user-agent
message-directory "~/Maildir"
message-auto-save-directory "~/Maildir/Drafts"
message-send-mail-function 'smtpmail-send-it
compose-mail-user-agent-warnings nil)
(setq smtpmail-auth-credentials (expand-file-name "~/.authinfo.gpg"))
;; (setq mml-secure-openpgp-signers '("86DB0F30F9F1661A54E21664C374817BE285268F"))
;; (add-hook 'message-send-hook 'mml-secure-message-sign-pgpmime)
@ -69,6 +70,6 @@
'(nnimap "mailbox"
(nnimap-address "imap.mailbox.org")
(nnimap-inbox "INBOX")
(nnimap-server-port 143)
(nnimap-stream starttls)
(nnimap-server-port 993)
(nnimap-stream ssl)
(nnimap-authinfo-file "~/.authinfo.gpg"))))