nit: remove email address

Ref: hlissner/doom-emacs-private@064c19884c
This commit is contained in:
Henrik Lissner 2021-11-14 17:34:17 +01:00
parent b4cc1c84d8
commit df64e5024b
2 changed files with 9 additions and 9 deletions

View file

@ -1,6 +1,6 @@
;;; init.el -*- lexical-binding: t; -*- ;;; init.el -*- lexical-binding: t; -*-
;; ;;
;; Author: Henrik Lissner <henrik@lissner.net> ;; Author: Henrik Lissner <contact@henrik.io>
;; URL: https://github.com/hlissner/doom-emacs ;; URL: https://github.com/hlissner/doom-emacs
;; ;;
;; ================= =============== =============== ======== ======== ;; ================= =============== =============== ======== ========

View file

@ -181,14 +181,14 @@ Then configure Emacs to use your email address:
#+BEGIN_SRC emacs-lisp :tangle no #+BEGIN_SRC emacs-lisp :tangle no
;; Each path is relative to the path of the maildir you passed to mu ;; Each path is relative to the path of the maildir you passed to mu
(set-email-account! "Lissner.net" (set-email-account! "bar.com"
'((mu4e-sent-folder . "/Lissner.net/Sent Mail") '((mu4e-sent-folder . "/bar.com/Sent Mail")
(mu4e-drafts-folder . "/Lissner.net/Drafts") (mu4e-drafts-folder . "/bar.com/Drafts")
(mu4e-trash-folder . "/Lissner.net/Trash") (mu4e-trash-folder . "/bar.com/Trash")
(mu4e-refile-folder . "/Lissner.net/All Mail") (mu4e-refile-folder . "/bar.com/All Mail")
(smtpmail-smtp-user . "henrik@lissner.net") (smtpmail-smtp-user . "foo@bar.com")
(user-mail-address . "henrik@lissner.net") ;; only needed for mu < 1.4 (user-mail-address . "foo@bar.com") ;; only needed for mu < 1.4
(mu4e-compose-signature . "---\nHenrik Lissner")) (mu4e-compose-signature . "---\nYours truly\nThe Baz"))
t) t)
#+END_SRC #+END_SRC