[PATCH] VIM: Make an option to save sent mail locally

2015-02-05 Thread Franz Fellner
Bartosz Telenczuk wrote: > > > I would appreciate an option to configure the "sent" box per provider. I > > > implemented this feature in this patch: > > > > > > id:1420891384-992-4-git-send-email-telenczuk at unic.cnrs-gif.fr > > > > Generally it might work. But there are other features that may

Re: [PATCH] VIM: Make an option to save sent mail locally

2015-02-05 Thread Franz Fellner
Bartosz Telenczuk wrote: > > > I would appreciate an option to configure the "sent" box per provider. I > > > implemented this feature in this patch: > > > > > > id:1420891384-992-4-git-send-email-telenc...@unic.cnrs-gif.fr > > > > Generally it might work. But there are other features that may re

[PATCH] VIM: Make an option to save sent mail locally

2015-02-03 Thread Bartosz Telenczuk
> > I would appreciate an option to configure the "sent" box per provider. I > > implemented this feature in this patch: > > > > id:1420891384-992-4-git-send-email-telenczuk at unic.cnrs-gif.fr > > Generally it might work. But there are other features that may rely on > per-account-settings (dra

Re: [PATCH] VIM: Make an option to save sent mail locally

2015-02-02 Thread Bartosz Telenczuk
> > I would appreciate an option to configure the "sent" box per provider. I > > implemented this feature in this patch: > > > > id:1420891384-992-4-git-send-email-telenc...@unic.cnrs-gif.fr > > Generally it might work. But there are other features that may rely on > per-account-settings (drafts

[PATCH] VIM: Make an option to save sent mail locally

2015-01-21 Thread Franz Fellner
Bartosz Telenczuk wrote: > Great work! > > > Yeah, I can add it so the folder can be changed. I figured this was just > > the > > start of things. Really we should be able to fcc it to our upstream > > provider > > sent mailbox too. > > I would appreciate an option to configure the "sent" box

Re: [PATCH] VIM: Make an option to save sent mail locally

2015-01-21 Thread Franz Fellner
Bartosz Telenczuk wrote: > Great work! > > > Yeah, I can add it so the folder can be changed. I figured this was just > > the > > start of things. Really we should be able to fcc it to our upstream > > provider > > sent mailbox too. > > I would appreciate an option to configure the "sent" box

Re: [PATCH] VIM: Make an option to save sent mail locally

2015-01-13 Thread Bartosz Telenczuk
Great work! > Yeah, I can add it so the folder can be changed. I figured this was just the > start of things. Really we should be able to fcc it to our upstream provider > sent mailbox too. I would appreciate an option to configure the "sent" box per provider. I implemented this feature in this

[PATCH] VIM: Make an option to save sent mail locally

2015-01-13 Thread Bartosz Telenczuk
Great work! > Yeah, I can add it so the folder can be changed. I figured this was just the > start of things. Really we should be able to fcc it to our upstream provider > sent mailbox too. I would appreciate an option to configure the "sent" box per provider. I implemented this feature in this

[PATCH] VIM: Make an option to save sent mail locally

2014-10-19 Thread Tomi Ollila
On Tue, Oct 07 2014, Ian Main wrote: > Tomi Ollila wrote: >> On Mon, Oct 06 2014, Ian Main wrote: >> >> > Add an option to use 'notmuch insert' to save your sent mail. >> > --- >> > >> > Add -inbox as well. >> > >> > vim/notmuch.vim | 17 + >> > 1 file changed, 17 insertions(+)

Re: [PATCH] VIM: Make an option to save sent mail locally

2014-10-19 Thread Tomi Ollila
On Tue, Oct 07 2014, Ian Main wrote: > Tomi Ollila wrote: >> On Mon, Oct 06 2014, Ian Main wrote: >> >> > Add an option to use 'notmuch insert' to save your sent mail. >> > --- >> > >> > Add -inbox as well. >> > >> > vim/notmuch.vim | 17 + >> > 1 file changed, 17 insertions(+)

[PATCH] VIM: Make an option to save sent mail locally

2014-10-18 Thread Franz Fellner
Ian Main wrote: > Franz Fellner wrote: > > Why not simply use Notmuch::Database.add_message? Would save a > > system-call. > > One could easily copy the sent mail into nm_db_path/sent/cur, add it to the > > db, tag it. > > Though I don't know enough about maildir handling, but probably rubys > > M

Re: [PATCH] VIM: Make an option to save sent mail locally

2014-10-18 Thread Franz Fellner
Ian Main wrote: > Franz Fellner wrote: > > Why not simply use Notmuch::Database.add_message? Would save a > > system-call. > > One could easily copy the sent mail into nm_db_path/sent/cur, add it to the > > db, tag it. > > Though I don't know enough about maildir handling, but probably rubys > > M

[PATCH] VIM: Make an option to save sent mail locally

2014-10-14 Thread Franz Fellner
Why not simply use Notmuch::Database.add_message? Would save a system-call. One could easily copy the sent mail into nm_db_path/sent/cur, add it to the db, tag it. Though I don't know enough about maildir handling, but probably rubys Mail module could help here. Another issue is configuration. Ha

Re: [PATCH] VIM: Make an option to save sent mail locally

2014-10-14 Thread Ian Main
Franz Fellner wrote: > Why not simply use Notmuch::Database.add_message? Would save a > system-call. > One could easily copy the sent mail into nm_db_path/sent/cur, add it to the > db, tag it. > Though I don't know enough about maildir handling, but probably rubys > Mail module could help here. S

[PATCH] VIM: Make an option to save sent mail locally

2014-10-14 Thread Ian Main
Franz Fellner wrote: > Why not simply use Notmuch::Database.add_message? Would save a > system-call. > One could easily copy the sent mail into nm_db_path/sent/cur, add it to the > db, tag it. > Though I don't know enough about maildir handling, but probably rubys > Mail module could help here. S

Re: [PATCH] VIM: Make an option to save sent mail locally

2014-10-14 Thread Franz Fellner
Why not simply use Notmuch::Database.add_message? Would save a system-call. One could easily copy the sent mail into nm_db_path/sent/cur, add it to the db, tag it. Though I don't know enough about maildir handling, but probably rubys Mail module could help here. Another issue is configuration. Ha

[PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Tomi Ollila
On Mon, Oct 06 2014, Ian Main wrote: > Add an option to use 'notmuch insert' to save your sent mail. > --- > > Add -inbox as well. > > vim/notmuch.vim | 17 + > 1 file changed, 17 insertions(+) > > diff --git a/vim/notmuch.vim b/vim/notmuch.vim > index 331e930..a9044c4 100644 > -

Re: [PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Ian Main
Tomi Ollila wrote: > On Mon, Oct 06 2014, Ian Main wrote: > > > Add an option to use 'notmuch insert' to save your sent mail. > > --- > > > > Add -inbox as well. > > > > vim/notmuch.vim | 17 + > > 1 file changed, 17 insertions(+) > > > > diff --git a/vim/notmuch.vim b/vim/notmuc

[PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Ian Main
Tomi Ollila wrote: > On Mon, Oct 06 2014, Ian Main wrote: > > > Add an option to use 'notmuch insert' to save your sent mail. > > --- > > > > Add -inbox as well. > > > > vim/notmuch.vim | 17 + > > 1 file changed, 17 insertions(+) > > > > diff --git a/vim/notmuch.vim b/vim/notmuc

Re: [PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Tomi Ollila
On Mon, Oct 06 2014, Ian Main wrote: > Add an option to use 'notmuch insert' to save your sent mail. > --- > > Add -inbox as well. > > vim/notmuch.vim | 17 + > 1 file changed, 17 insertions(+) > > diff --git a/vim/notmuch.vim b/vim/notmuch.vim > index 331e930..a9044c4 100644 > -

[PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Ian Main
Add an option to use 'notmuch insert' to save your sent mail. --- Add -inbox as well. vim/notmuch.vim | 17 + 1 file changed, 17 insertions(+) diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 331e930..a9044c4 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@ -58,6 +58,7

[PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Ian Main
Add an option to use 'notmuch insert' to save your sent mail. --- Add -inbox as well. vim/notmuch.vim | 17 + 1 file changed, 17 insertions(+) diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 331e930..a9044c4 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@ -58,6 +58,7

[PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Ian Main
Add an option to use 'notmuch insert' to save your sent mail. --- vim/notmuch.vim | 17 + 1 file changed, 17 insertions(+) diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 331e930..cb280c3 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@ -58,6 +58,7 @@ let s:notmuch_date_

[PATCH] VIM: Make an option to save sent mail locally

2014-10-06 Thread Ian Main
Add an option to use 'notmuch insert' to save your sent mail. --- vim/notmuch.vim | 17 + 1 file changed, 17 insertions(+) diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 331e930..cb280c3 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@ -58,6 +58,7 @@ let s:notmuch_date_