Final call for news for 0.18

2014-05-01 Thread Tomi Ollila
On Thu, May 01 2014, Felipe Contreras wrote: > David Bremner wrote: >> We've had a quiet freeze for a week or so, so I think we're probably >> ready to release. Per Jani's suggestion, I made a "tl;dr" summary for >> the NEWS. Barring last minute bugs, I'd like to release this weekend, >> so

[announce] Bower 0.6

2014-05-01 Thread Peter Wang
Hi, Bower is yet another curses frontend for the Notmuch email system. I wrote it for me, but you might like it, too. https://github.com/wangp/bower Bower 0.6 (2014-05-01) == This release requires notmuch 0.15 or above. Users who access notmuch via ssh must update

[PATCH] NEWS: folder:, path:, and database upgrade

2014-05-01 Thread David Edmondson
On Sun, Apr 27 2014, Jani Nikula wrote: > +The `folder:` search prefix now requires an exact match I think that it would be clearer to say: The `folder:` search prefix no longer supports wildcard matching (Or something like that.)

[PATCH v2 3/3] vim: improve the way messages are sent

2014-05-01 Thread Felipe Contreras
We want the proper encoding and content-type to be set when sending the mail, but human-readable plain-text for composing. So split the code in two parts: the presentation and the transport conversion. This fixes an issue while sending non-ascii mails to strict servers; the mail needs to be

[PATCH v2 2/3] vim: make the html handler configurable

2014-05-01 Thread Felipe Contreras
From: Paul Roberts Signed-off-by: Felipe Contreras --- vim/notmuch.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 25a16e9..0cb94f6 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@ -919,7 +919,8 @@ ruby

[PATCH v2 1/3] vim: fix count_threads variable check

2014-05-01 Thread Felipe Contreras
It never really worked; in Ruby only 'nil' and 'false' evaluate to false, therefore the statement '0 : true ? false' returns true, so it doesn't matter if notmuch_folders_count_threads = 0, count_threads would be true. We need to check specifically if the value is 1 or 0. Signed-off-by: Felipe

[PATCH v2 0/3] vim plugin updates

2014-05-01 Thread Felipe Contreras
A few trivial updates, and an important fix. Changes since v1: improved commit messages. Felipe Contreras (2): vim: fix count_threads variable check vim: improve the way messages are sent Paul Roberts (1): vim: make the html handler configurable vim/notmuch.vim | 39

Final call for news for 0.18

2014-05-01 Thread Felipe Contreras
Tomi Ollila wrote: > In general these patches: > > id:1398289784-18203-2-git-send-email-felipe.contreras at gmail.com > id:1398289784-18203-3-git-send-email-felipe.contreras at gmail.com > id:1398289784-18203-4-git-send-email-felipe.contreras at gmail.com > > has something lacking in the commit

[PATCH 5/5] NEWS: insert and new refuse invalid tags

2014-05-01 Thread Jani Nikula
--- NEWS | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS b/NEWS index 3d42d08684be..1948072ae43c 100644 --- a/NEWS +++ b/NEWS @@ -83,6 +83,13 @@ The commands set consistent exit status codes on failures the status codes for format version mismatches for commands that support

[PATCH 4/5] NEWS: message piping working directory

2014-05-01 Thread Jani Nikula
--- NEWS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS b/NEWS index 74a68c573f03..3d42d08684be 100644 --- a/NEWS +++ b/NEWS @@ -183,6 +183,12 @@ Reply pushes mark before signature the quoted text. The mark is now pushed before the signature, if any, instead of end of buffer

[PATCH 3/5] NEWS: cli exit status codes

2014-05-01 Thread Jani Nikula
--- NEWS | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS b/NEWS index b635b46aeebc..74a68c573f03 100644 --- a/NEWS +++ b/NEWS @@ -76,6 +76,13 @@ Command-Line Interface Do not synchronize tags to maildir flags in `notmuch insert` if the user does not want it. +The commands

[PATCH 2/5] NEWS: emacs: push mark before signature on reply

2014-05-01 Thread Jani Nikula
--- NEWS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS b/NEWS index b7a1b5f645e5..b635b46aeebc 100644 --- a/NEWS +++ b/NEWS @@ -170,6 +170,12 @@ Replies to encrypted messages will be encrypted by default encrypt replies to encrypted messages. This should make it less likely

[PATCH 1/5] NEWS: notmuch insert respects maildir.synchronize_flags

2014-05-01 Thread Jani Nikula
--- NEWS | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS b/NEWS index 06876e0a7df1..b7a1b5f645e5 100644 --- a/NEWS +++ b/NEWS @@ -71,6 +71,11 @@ Command-Line Interface This option suppresses the progress and summary reports. +`notmuch insert` respects maildir.synchronize_flags

[PATCH 0/5] some more news for 0.18

2014-05-01 Thread Jani Nikula
Hi David, here's some more news; feel free to drop any that you don't think are newsworthy. BR, Jani. Jani Nikula (5): NEWS: notmuch insert respects maildir.synchronize_flags NEWS: emacs: push mark before signature on reply NEWS: cli exit status codes NEWS: message piping working

[PATCH v2] emacs: allow functions in notmuch-show-stash-mlarchive-link-alist

2014-05-01 Thread Jani Nikula
Some archives may use a more complicated scheme for referring to messages than just concatenated url and message-id. In particular, patchwork requires a query to translate message-id to a patchwork patch id. Allow functions in notmuch-show-stash-mlarchive-link-alist to facilitate this. For

[PATCH 11/11] emacs: Support cid: references with shr renderer

2014-05-01 Thread David Edmondson
On Mon, Apr 21 2014, Austin Clements wrote: > +(defun notmuch-show--insert-part-text/html-shr (msg part) > + ;; Make sure shr is loaded before we start let-binding its globals > + (require 'shr) > + (let ((dom (let (process-crypto notmuch-show-process-crypto) Missing brackets? (You let-bind

[PATCH] NEWS: add overview section for 0.18

2014-05-01 Thread David Bremner
This mentions the things I (subjectively) thought were most likely to either annoy people or make it worth upgrading. --- NEWS | 13 + 1 file changed, 13 insertions(+) diff --git a/NEWS b/NEWS index 06876e0..132c687 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,19 @@ Notmuch 0.18~rc0

Final call for news for 0.18

2014-05-01 Thread David Bremner
We've had a quiet freeze for a week or so, so I think we're probably ready to release. Per Jani's suggestion, I made a "tl;dr" summary for the NEWS. Barring last minute bugs, I'd like to release this weekend, so please send me any NEWS comments ASAP. d

Re: [PATCH 11/11] emacs: Support cid: references with shr renderer

2014-05-01 Thread David Edmondson
On Mon, Apr 21 2014, Austin Clements wrote: +(defun notmuch-show--insert-part-text/html-shr (msg part) + ;; Make sure shr is loaded before we start let-binding its globals + (require 'shr) + (let ((dom (let (process-crypto notmuch-show-process-crypto) Missing brackets? (You let-bind both

[announce] Bower 0.6

2014-05-01 Thread Peter Wang
Hi, Bower is yet another curses frontend for the Notmuch email system. I wrote it for me, but you might like it, too. https://github.com/wangp/bower Bower 0.6 (2014-05-01) == This release requires notmuch 0.15 or above. Users who access notmuch via ssh must update

[PATCH v2] emacs: allow functions in notmuch-show-stash-mlarchive-link-alist

2014-05-01 Thread Jani Nikula
Some archives may use a more complicated scheme for referring to messages than just concatenated url and message-id. In particular, patchwork requires a query to translate message-id to a patchwork patch id. Allow functions in notmuch-show-stash-mlarchive-link-alist to facilitate this. For

[PATCH 0/5] some more news for 0.18

2014-05-01 Thread Jani Nikula
Hi David, here's some more news; feel free to drop any that you don't think are newsworthy. BR, Jani. Jani Nikula (5): NEWS: notmuch insert respects maildir.synchronize_flags NEWS: emacs: push mark before signature on reply NEWS: cli exit status codes NEWS: message piping working

[PATCH 1/5] NEWS: notmuch insert respects maildir.synchronize_flags

2014-05-01 Thread Jani Nikula
--- NEWS | 5 + 1 file changed, 5 insertions(+) diff --git a/NEWS b/NEWS index 06876e0a7df1..b7a1b5f645e5 100644 --- a/NEWS +++ b/NEWS @@ -71,6 +71,11 @@ Command-Line Interface This option suppresses the progress and summary reports. +`notmuch insert` respects

[PATCH 2/5] NEWS: emacs: push mark before signature on reply

2014-05-01 Thread Jani Nikula
--- NEWS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS b/NEWS index b7a1b5f645e5..b635b46aeebc 100644 --- a/NEWS +++ b/NEWS @@ -170,6 +170,12 @@ Replies to encrypted messages will be encrypted by default encrypt replies to encrypted messages. This should make it less likely

[PATCH 5/5] NEWS: insert and new refuse invalid tags

2014-05-01 Thread Jani Nikula
--- NEWS | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS b/NEWS index 3d42d08684be..1948072ae43c 100644 --- a/NEWS +++ b/NEWS @@ -83,6 +83,13 @@ The commands set consistent exit status codes on failures the status codes for format version mismatches for commands that support

[PATCH 3/5] NEWS: cli exit status codes

2014-05-01 Thread Jani Nikula
--- NEWS | 7 +++ 1 file changed, 7 insertions(+) diff --git a/NEWS b/NEWS index b635b46aeebc..74a68c573f03 100644 --- a/NEWS +++ b/NEWS @@ -76,6 +76,13 @@ Command-Line Interface Do not synchronize tags to maildir flags in `notmuch insert` if the user does not want it. +The commands

[PATCH 4/5] NEWS: message piping working directory

2014-05-01 Thread Jani Nikula
--- NEWS | 6 ++ 1 file changed, 6 insertions(+) diff --git a/NEWS b/NEWS index 74a68c573f03..3d42d08684be 100644 --- a/NEWS +++ b/NEWS @@ -183,6 +183,12 @@ Reply pushes mark before signature the quoted text. The mark is now pushed before the signature, if any, instead of end of buffer

RE: Final call for news for 0.18

2014-05-01 Thread Tomi Ollila
On Thu, May 01 2014, Felipe Contreras felipe.contre...@gmail.com wrote: David Bremner wrote: We've had a quiet freeze for a week or so, so I think we're probably ready to release. Per Jani's suggestion, I made a tl;dr summary for the NEWS. Barring last minute bugs, I'd like to release this

Re: [PATCH 5/5] NEWS: insert and new refuse invalid tags

2014-05-01 Thread David Bremner
Jani Nikula j...@nikula.org writes: --- NEWS | 7 +++ 1 file changed, 7 insertions(+) pushed jani's 5 patches, and an amended version of mine ___ notmuch mailing list notmuch@notmuchmail.org http://notmuchmail.org/mailman/listinfo/notmuch

RE: Final call for news for 0.18

2014-05-01 Thread Felipe Contreras
Tomi Ollila wrote: In general these patches: id:1398289784-18203-2-git-send-email-felipe.contre...@gmail.com id:1398289784-18203-3-git-send-email-felipe.contre...@gmail.com id:1398289784-18203-4-git-send-email-felipe.contre...@gmail.com has something lacking in the commit messages; none

[PATCH v2 1/3] vim: fix count_threads variable check

2014-05-01 Thread Felipe Contreras
It never really worked; in Ruby only 'nil' and 'false' evaluate to false, therefore the statement '0 : true ? false' returns true, so it doesn't matter if notmuch_folders_count_threads = 0, count_threads would be true. We need to check specifically if the value is 1 or 0. Signed-off-by: Felipe

[PATCH v2 0/3] vim plugin updates

2014-05-01 Thread Felipe Contreras
A few trivial updates, and an important fix. Changes since v1: improved commit messages. Felipe Contreras (2): vim: fix count_threads variable check vim: improve the way messages are sent Paul Roberts (1): vim: make the html handler configurable vim/notmuch.vim | 39

[PATCH v2 3/3] vim: improve the way messages are sent

2014-05-01 Thread Felipe Contreras
We want the proper encoding and content-type to be set when sending the mail, but human-readable plain-text for composing. So split the code in two parts: the presentation and the transport conversion. This fixes an issue while sending non-ascii mails to strict servers; the mail needs to be

[PATCH v2 2/3] vim: make the html handler configurable

2014-05-01 Thread Felipe Contreras
From: Paul Roberts p...@stelo.org.uk Signed-off-by: Felipe Contreras felipe.contre...@gmail.com --- vim/notmuch.vim | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/vim/notmuch.vim b/vim/notmuch.vim index 25a16e9..0cb94f6 100644 --- a/vim/notmuch.vim +++ b/vim/notmuch.vim @@

RE: Final call for news for 0.18

2014-05-01 Thread David Bremner
Felipe Contreras felipe.contre...@gmail.com writes: Also NEWS for these changes are missing. Shouldn't the NEWS be written by the maintainers? In fact, aren't they the ones that decide if something is worth mentioning in the NEWS or not? Hi Felipe; I guess for the Vim/ruby stuff you're