]> git.notmuchmail.org Git - notmuch/commitdiff
vim: use the full path for sendmail
authorUwe Kleine-König <ukleinek@strlen.de>
Sun, 10 Jul 2011 19:55:56 +0000 (21:55 +0200)
committerFelipe Contreras <felipe.contreras@gmail.com>
Sat, 16 Jul 2011 18:57:38 +0000 (21:57 +0300)
... as /usr/sbin isn't usually in user's PATH.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
vim/plugin/notmuch.vim

index 181e626e628d2a15b4bfb1756da30bc2deed79c9..44108273762b2e62c1eb07dfd167664ee13a4718 100644 (file)
@@ -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                            ,