This commit is contained in:
ry
2021-10-27 17:37:42 -07:00
parent 055516b4c7
commit 0b50e2b941
4 changed files with 32 additions and 10 deletions
+23
View File
@@ -364,3 +364,26 @@ Deft is a package that helps browse and filter plain text files. I use it to sea
(deft-default-extension "org")
(deft-directory org-roam-directory))
#+end_src
* Mu4e Configuration
** Important Account information:
*** Opal.sh
- IMAP: imap.opal.sh -- 993
- SMTP smtp.opal.sh -- 587
- Username: ry@opal.sh
#+begin_src emacs-lisp
(use-package mu4e
:config
;; This is set to 't' to avoid mail syncing issues when using mbsync
(setq mu4e-change-filenames-when-moving t)
;; Refresh mail using isync every 5 minutes
(setq mu4e-update-interval (* 5 60))
(setq mu4e-get-mail-command "mbsync -a -c ~/dotfiles/.config/mbsync/mbsyncrc")
(setq mu4e-maildir "~/mail")
(setq mu4e-drafts-folder "/")
)
#+end_src