Commit 96397662ef66

Vincent Demeester <vincent@sbr.pm>
2025-05-03 23:52:15
tools/emacs: fix mu4e…
… forcing mu4e-mu-home to the right folder. Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent cda527d
Changed files (1)
tools
emacs
tools/emacs/config/config-mu4e.el
@@ -5,11 +5,12 @@
 (use-package mu4e
   :commands (mu4e)
   :custom
+  (mu4e-mu-home "/home/vincent/.local/cache/mu")
   (mu4e-context-policy 'pick-first)
   (mu4e-change-filenames-when-moving t)
   (mu4e-attachment-dir "~/desktop/downloads")
   :config
-  (setq mu4e-get-mail-command (concat (executable-find "mbsync") " -a"))
+  (setq mu4e-get-mail-command (concat (executable-find "mbsync") " --all"))
   (setq mu4e-update-interval 1800) ; 30m
   
   (defun vde-mu4e--mark-get-copy-target ()