I'm trying to sync my emails from emacs using mu4e but I get the following error message:
Process mu4e-test exited abnormally with code 127
/bin/bash: mbsync: command not found
If I set mbsync
with its full path in my init.el
file:
(setq mu4e-get-mail-command "/usr/local/bin/mbsync -a")
Then I get the following error:
sh: gpg: command not found
Skipping account, PassCmd produced no output
I also tried setting the gpg path with: (setq epg-gpg-program "/usr/local/bin/gpg")
and appending the global path with (setq exec-path (append exec-path '("/usr/local/bin/")))
but none worked.
Any ideas?