Improve mu4e setup

This commit is contained in:
Antoine Martin 2022-04-11 16:31:48 +02:00
parent a4142bdad4
commit eb57efa308

View file

@ -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