From c413de41d1c8356ec55c6de041ce02e58c7d3a1b Mon Sep 17 00:00:00 2001 From: Random936 Date: Wed, 20 Sep 2023 13:18:48 -0700 Subject: [PATCH] Added a new email configuration file (WIP) --- .emacs.d/config.org | 2 +- .emacs.d/email.org | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 .emacs.d/email.org diff --git a/.emacs.d/config.org b/.emacs.d/config.org index 928978a..adea42d 100644 --- a/.emacs.d/config.org +++ b/.emacs.d/config.org @@ -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")) diff --git a/.emacs.d/email.org b/.emacs.d/email.org new file mode 100644 index 0000000..19ad95f --- /dev/null +++ b/.emacs.d/email.org @@ -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