diff options
-rw-r--r-- | init.el | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/init.el b/init.el index bebdd69..32bf170 100644 --- a/init.el +++ b/init.el | |||
@@ -810,10 +810,13 @@ specific to most general, they are these: | |||
810 | ("/Trash" . ?t))))))) | 810 | ("/Trash" . ?t))))))) |
811 | mu4e-get-mail-command "mbsync -a" | 811 | mu4e-get-mail-command "mbsync -a" |
812 | mu4e-maildir "~/mail" | 812 | mu4e-maildir "~/mail" |
813 | mu4e-update-interval (unless (file-exists-p | 813 | mu4e-update-interval (unless |
814 | (expand-file-name | 814 | ;; I just realized... there is probably a |
815 | "systemd/user/mbsync.timer" | 815 | ;; /much/ better way to do this. |
816 | (getenv "XDG_CONFIG_HOME"))) | 816 | (file-exists-p |
817 | (expand-file-name | ||
818 | "systemd/user/mbsync.timer" | ||
819 | (getenv "XDG_CONFIG_HOME"))) | ||
817 | (* 60 5)) | 820 | (* 60 5)) |
818 | sendmail-program (seq-some #'executable-find | 821 | sendmail-program (seq-some #'executable-find |
819 | '("msmtp" | 822 | '("msmtp" |