diff options
author | Uwe Kleine-König <ukleinek@strlen.de> | 2011-07-10 21:55:56 +0200 |
---|---|---|
committer | Felipe Contreras <felipe.contreras@gmail.com> | 2011-07-16 21:57:38 +0300 |
commit | bab653ce39f3d93ee0cf169b89468646c0ba54fd (patch) | |
tree | f323fdc3fd355e92608517ea00fd1c2e16871928 | |
parent | bcb17491b5f9f303b853a9797dfbb4f60279ece9 (diff) |
vim: use the full path for sendmail
... as /usr/sbin isn't usually in user's PATH.
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
-rw-r--r-- | vim/plugin/notmuch.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/plugin/notmuch.vim b/vim/plugin/notmuch.vim index 181e626e..44108273 100644 --- a/vim/plugin/notmuch.vim +++ b/vim/plugin/notmuch.vim @@ -25,7 +25,7 @@ let s:notmuch_defaults = { \ 'g:notmuch_cmd': 'notmuch' , - \ 'g:notmuch_sendmail': 'sendmail' , + \ 'g:notmuch_sendmail': '/usr/sbin/sendmail' , \ 'g:notmuch_debug': 0 , \ \ 'g:notmuch_search_newest_first': 1 , |