From eb57efa30854ea804771529fe32a5c3f7adbeba2 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Mon, 11 Apr 2022 16:31:48 +0200 Subject: [PATCH] Improve mu4e setup --- config.org | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/config.org b/config.org index 18b4006..3a28cfd 100644 --- a/config.org +++ b/config.org @@ -50,6 +50,8 @@ - [[#disable-formatflowed][Disable format=flowed]] - [[#dont-permanently-delete-when-trashing-mails][Don't permanently delete when trashing mails]] - [[#add-git-apply-path-to-mu4e-actions][Add git-apply-path to mu4e actions]] + - [[#enable-auto-updates][Enable auto updates]] + - [[#ask-which-address-to-send-with-when-composing-a-new-mail][Ask which address to send with when composing a new mail]] * Misc @@ -641,3 +643,17 @@ will have to be adapted soon. (add-to-list 'mu4e-view-actions '("MboxGitApply" . mu4e-action-git-apply-mbox) t)) #+end_src + +** Enable auto updates + +#+begin_src emacs-lisp +(after! mu4e + (setq mu4e-update-interval 900)) +#+end_src + +** Ask which address to send with when composing a new mail + +#+begin_src emacs-lisp +(after! mu4e + (setq mu4e-compose-context-policy 'ask)) +#+end_src