doomemacs/modules/email/mu4e/doctor.el

16 lines
559 B
EmacsLisp
Raw Normal View History

2020-10-01 16:42:53 +08:00
;;; email/mu4e/doctor.el -*- lexical-binding: t; -*-
(unless (executable-find "mu")
(warn! "Couldn't find mu command. Mu4e requires this to work."))
(unless (or (executable-find "mbsync")
(executable-find "offlineimap"))
2020-10-16 10:48:41 +08:00
(warn! "Couldn't find mbsync or offlineimap command. \
2020-10-01 16:42:53 +08:00
You may not have a way of fetching mail."))
(when (and (modulep! +org)
2020-10-01 16:42:53 +08:00
(not IS-WINDOWS))
(unless (executable-find "identify")
2021-07-10 13:59:03 -05:00
(warn! "Couldn't find the identify command from imagemagick. \
2020-10-01 16:42:53 +08:00
LaTeX fragment re-scaling with org-msg will not work.")))