Skip to content

Commit

Permalink
Merge pull request felipec#13 from lucas8/master
Browse files Browse the repository at this point in the history
Remove notmuch_sendmail option
  • Loading branch information
ff2000 committed Apr 20, 2015
2 parents 26dc380 + 41b4a13 commit 74b405b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 2 additions & 3 deletions doc/notmuch.txt
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ the location of the binary:
\ 'location': '/usr/bin/exim',
\ }
<
The default sendmail method also accepts the 'location' param.

*g:notmuch_date_format*

Expand All @@ -190,12 +191,10 @@ If you want to count the threads instead of the messages in the folder view:
<

*g:notmuch_reader*
*g:notmuch_sendmail*

You can also configure your externail mail reader and sendemail program:
You can also configure your external mail reader:
>
let g:notmuch_reader = 'mutt -f %s'
let g:notmuch_sendmail = 'sendmail'
<

You can also configure what probram is used to view attachments:
Expand Down
5 changes: 0 additions & 5 deletions plugin/notmuch.vim
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,6 @@ let s:notmuch_sendmail_param_default = {
let s:notmuch_date_format_default = '%d.%m.%y'
let s:notmuch_datetime_format_default = '%d.%m.%y %H:%M:%S'
let s:notmuch_reader_default = 'mutt -f %s'
let s:notmuch_sendmail_default = 'sendmail'
let s:notmuch_view_attachment_default = 'xdg-open'
let s:notmuch_attachment_tmpdir_default = '~/.notmuch/tmp'
let s:notmuch_save_sent_locally_default = 1
Expand Down Expand Up @@ -418,10 +417,6 @@ function! s:set_defaults()
let g:notmuch_reader = s:notmuch_reader_default
endif

if !exists('g:notmuch_sendmail')
let g:notmuch_sendmail = s:notmuch_sendmail_default
endif

if !exists('g:notmuch_attachment_tmpdir')
let g:notmuch_attachment_tmpdir = s:notmuch_attachment_tmpdir_default
endif
Expand Down

0 comments on commit 74b405b

Please sign in to comment.