Added a new email configuration file (WIP)

This commit is contained in:
Random936 2023-09-20 13:18:48 -07:00
parent dec032575e
commit c413de41d1
2 changed files with 19 additions and 1 deletions

View File

@ -835,7 +835,7 @@ This is the section to include imports from other files.
(jm/load-config-if-exists "~/.emacs.d/functions.org")
;; Load emacs email client configuration
(jm/load-config-if-exists "~/.emacs.d/lsp.org")
(jm/load-config-if-exists "~/.emacs.d/email.org")
;; Load EXWM configuration if environment variable set.
(let ((exwm-org-file "~/.emacs.d/exwm.org"))

18
.emacs.d/email.org Normal file
View File

@ -0,0 +1,18 @@
#+TITLE: Email Configuration
Setup ~mu4e~ to give emacs the capability to send emails using my gmail account.
#+begin_src emacs-lisp
;; (use-package mu4e
;; :ensure nil
;; :config
;; ;; Avoids syncing issues.
;; (setq mu4e-change-filenames-when-moving t)
;; ;; Refresh mail every X seconds. Set to 5 minutes currently
;; (setq mu4e-update-interval (* 5 60))
;; (setq mu4e-get-mail-command "mbsync -a")
;; (setq mu4e-maildir "~/Mail")
;; (setq mu4e-compose-format-flowed
#+end_src