[PATCH] cli: add a tool for starting new message in the emacs ui

2015-01-18 Thread Tomi Ollila
On Sun, Jan 18 2015, David Bremner wrote: > From: Jani Nikula > > Add a tool to start composing an email in the Notmuch Emacs UI with > the specified subject, recipients, and message body. > --- > > This version fixes my complaint about the previous version not > starting emacs. It does this

[PATCH] doc: remove support for rst2man

2015-01-18 Thread David Bremner
Jani Nikula writes: > > Apologies, this is due to having to use an inferior MUA on my phone. > Ah, it really is wrapped in the raw version. My mistake, I thought something interesting was going on, not just the usual bad MUA software ;). d

[PATCH] doc: remove support for rst2man

2015-01-18 Thread Jani Nikula
ople can duplicate. For a change the html version displays > perfectly. Apologies, this is due to having to use an inferior MUA on my phone. J. > > d > -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20150118/cdb32dec/attachment.html>

[PATCH] doc: remove support for rst2man

2015-01-18 Thread Jani Nikula
-infile = open(sourcedir + '/' + page[0] + '.rst', 'r') > - > -# this is a crude hack. We look for the first blank line, and > -# insert the rst2man header there. > -# > -# XXX consider really parsing input > - > -count = 0 > -lines = infile.readlines() > -for line in lines: > -outfile.write(line) > -if (blankre.match(line)): > -break > -count = count + 1 > - > -del lines[0:count + 1] > - > -header(outfile, *page) > - > -outfile.write("".join(lines)) > -outfile.close() > - > -system('set -x; rst2man {0} {1}/{2}.{3}' > - .format(filename, outdir, page[0], page[4])) > -- > 2.1.4 > > ___ > notmuch mailing list > notmuch at notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20150118/a191336b/attachment.html>

[PATCH] doc: remove support for rst2man

2015-01-18 Thread David Bremner
Jani Nikula writes: >> +Support for using rst2man in place of sphinx to build the >> +docmumentation has been removed. > > -mu > > Otherwise lgtm. Fixed in git. By the way, the parent message displays very oddly for me in emacs24; the text/plain part introduces a bunch of wrapping that makes it

[PATCH 3/3] cli: crypto: S/MIME verification/decryption support

2015-01-18 Thread David Bremner
Jani Nikula writes: > The notmuch-show flags --decrypt and --verify will now also process > S/MIME multiparts if encountered. Requires gmime-2.6 and gpgsm. > > Based on work by Jameson Graef Rollins . > I tend to agree this version is a bit easier to read, if a bit longer. Jamie, do you have

[PATCH v2 3/3] test: Update tests for 'authors_matched' and authors_non_matched'.

2015-01-18 Thread Mark Walters
Hi Only one small comment here: it would be nice to have a test that has a non-empty authors_non_matched field. Best wishes Mark On Fri, 24 Oct 2014, David Edmondson wrote: > --- > test/T160-json.sh| 9 + > test/T170-sexp.sh| 4 ++-- >

[PATCH v2 2/3] emacs: Improved display of matching/non-matching authors.

2015-01-18 Thread Mark Walters
On Fri, 24 Oct 2014, David Edmondson wrote: > Rather than splitting the :authors attribute, which is error prone, > use the separate :authors_matched and :authors_non_matched attributes. > > This improves the display of authors should one of them include a pipe > symbol (|) in their 'from'

[PATCH 2/3] crypto: make crypto ctx initialization an array

2015-01-18 Thread David Bremner
Jani Nikula writes: > --- > crypto.c | 30 ++ > 1 file changed, 22 insertions(+), 8 deletions(-) A few words about the big picture would be good here, namely that we want to make it easier to support a new protocol.

[PATCH 1/3] crypto: refactor context creation to facilitate further work

2015-01-18 Thread David Bremner
Jani Nikula writes: > --- > crypto.c | 27 +-- > 1 file changed, 17 insertions(+), 10 deletions(-) No real objections. Although it's kindof implicit in "refactor", it might make sense to note in the commit message that it's just code movement. d

[PATCH v2 1/3] search: Separately report matching and non-matching authors.

2015-01-18 Thread Mark Walters
On Fri, 24 Oct 2014, David Edmondson wrote: > In addition to the 'authors' attribute of each search result, include > 'authors_matched' and 'authors_non_matched' attributes. Both > attributes are always included and are formatted as a list of > authors. If there are no matching authors, the

[PATCH] doc: remove support for rst2man

2015-01-18 Thread David Bremner
It was becoming increasingly complicated to support rst2man, and there were apparently not many people that relied on it. --- Now's your chance to tell us how useful rst2man support is to you. INSTALL| 7 ++ NEWS | 6 + configure | 20

Announcing Astroid v0.2

2015-01-18 Thread Gaute Hope
Greetings, Astroid (https://github.com/gauteh/astroid) v0.2 is now ready! Astroid is a graphical threads-with-tags mail user agent based on sup and notmuch. Written in C++ using GTK+, WebKit and gmime. # Changes since v0.1 [0] * Allow math to be rendered with MathJax! Enclose math with $

[PATCH] cli: add a tool for starting new message in the emacs ui

2015-01-18 Thread David Bremner
From: Jani Nikula Add a tool to start composing an email in the Notmuch Emacs UI with the specified subject, recipients, and message body. --- This version fixes my complaint about the previous version not starting emacs. It does this by starting a new "frame", either at the

[PATCH v4] nmbug: Add an 'init' command

2015-01-18 Thread W. Trevor King
For folks that want to start versioning a new tag-space, instead of cloning one that someone else has already started. The empty-blob hash-object call avoids errors like: $ nmbug commit error: invalid object 100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 for 'tags/...' fatal:

[PATCH v2 2/3] emacs: Improved display of matching/non-matching authors.

2015-01-18 Thread David Bremner
David Edmondson writes: > +(defun notmuch-search-author-propertize (authors matching-length) >"Split `authors' into matching and non-matching authors and > propertize appropriately. If no boundary between authors and > non-authors is found, assume that all of the authors match." The

[PATCH v2 1/3] search: Separately report matching and non-matching authors.

2015-01-18 Thread David Bremner
David Edmondson writes: > In addition to the 'authors' attribute of each search result, include > 'authors_matched' and 'authors_non_matched' attributes. Both > attributes are always included and are formatted as a list of > authors. If there are no matching authors, the 'authors_non_matched' >

[PATCH] doc: remove support for rst2man

2015-01-18 Thread W. Trevor King
: application/pgp-signature Size: 819 bytes Desc: OpenPGP digital signature URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20150118/00d381fd/attachment.pgp>

[PATCH 3/3] doc: add more information on operators.

2015-01-18 Thread David Bremner
More material borrowed from the wiki page on "searching" --- doc/man7/notmuch-search-terms.rst | 43 ++- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/doc/man7/notmuch-search-terms.rst b/doc/man7/notmuch-search-terms.rst index 3b27053..a315fbe

[PATCH 2/3] doc: add material on stemming and wildcards

2015-01-18 Thread David Bremner
This is lightly massaged from the searching page on the wiki. --- doc/man7/notmuch-search-terms.rst | 28 1 file changed, 28 insertions(+) diff --git a/doc/man7/notmuch-search-terms.rst b/doc/man7/notmuch-search-terms.rst index 52f6804..3b27053 100644 ---

[PATCH 1/3] doc: add details about Xapian search syntax

2015-01-18 Thread David Bremner
Questions related to the way that probabilistic prefixes and phrases are handled come up quite often and it is nicer to have the documentation self contained. Hopefully putting it in subsections prevents it from being overwhelming. --- doc/man7/notmuch-search-terms.rst | 52

[PATCH 2/3] crypto: make crypto ctx initialization an array

2015-01-18 Thread Jani Nikula
--- crypto.c | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/crypto.c b/crypto.c index 7cd7b69d1221..8e58dcca4ee5 100644 --- a/crypto.c +++ b/crypto.c @@ -74,16 +74,30 @@ create_gpg_context (notmuch_crypto_t *crypto) #endif /* GMIME_ATLEAST_26

[PATCH 1/3] crypto: refactor context creation to facilitate further work

2015-01-18 Thread Jani Nikula
--- crypto.c | 27 +-- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/crypto.c b/crypto.c index 6f4a6db9d0f1..7cd7b69d1221 100644 --- a/crypto.c +++ b/crypto.c @@ -24,14 +24,20 @@ /* Create a GPG context (GMime 2.6) */ static notmuch_crypto_context_t *

[PATCH 0/3] smime with some refactoring

2015-01-18 Thread Jani Nikula
On Sun, 18 Jan 2015, David Bremner wrote: > The notmuch-show flags --decrypt and --verify will now also process > S/MIME multiparts if encountered. Requires gmime-2.6 and gpgsm. Hi David - I've had some S/MIME patches laying around since 2013, almost forgotten... functionally it's the same but

[PATCH] doc: add details about Xapian search syntax

2015-01-18 Thread Jani Nikula
On Sun, 18 Jan 2015, David Bremner wrote: > Questions related to the way that probabilistic prefixes and phrases > are handled come up quite often and it is nicer to have the documentation > self contained. Hopefully putting it in subsections prevents it from being > overwhelming. I think

[PATCH v6 2/2] nmbug: Add a 'help' command for folks who don't like --help

2015-01-18 Thread David Bremner
Pushed. I tested with python2.7; I guess we gave up 2.6 a while ago. d

[PATCH v4 1/3] Emacs: Display a message when generating address completion candidates

2015-01-18 Thread David Bremner
Michal Sojka writes: > The TAB-initiated address completion generates completion candidates > synchronously, blocking the UI. Since this can take long time, it is > better to let the use know what's happening. > --- Pushed this one patch. d

[DRAFT] New features in Vim interface

2015-01-18 Thread David Bremner
Ian Main writes: > Let me know what you think of the code base and if you are willing to help out > with merging the changes (lots of reviews I think mostly). In nmbug commit cb9e7acbb6b I marked the outstanding vim patches from Ian and Franz as "moreinfo"; we can revisit their status when you

[PATCH] doc: add details about Xapian search syntax

2015-01-18 Thread David Bremner
Questions related to the way that probabilistic prefixes and phrases are handled come up quite often and it is nicer to have the documentation self contained. Hopefully putting it in subsections prevents it from being overwhelming. --- doc/man7/notmuch-search-terms.rst | 46

[Patch v4 5/5] test: add broken test for SMIME decryption with notmuch CLI

2015-01-18 Thread David Bremner
The test JSON here is not correct, but the larger problem is thatit seems like no actual decryption is being done. --- test/T355-smime.sh | 36 1 file changed, 36 insertions(+) diff --git a/test/T355-smime.sh b/test/T355-smime.sh index caedf5e..95dbf8f

[Patch v4 4/5] debian: Recommend gpgsm for S/MIME support

2015-01-18 Thread David Bremner
From: Jameson Graef Rollins --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 4bc4cd9..05cd04f 100644 --- a/debian/control +++ b/debian/control @@ -31,7 +31,7 @@ Vcs-Browser:

[Patch v4 3/5] test: add S/MIME signature verification test for notmuch CLI

2015-01-18 Thread David Bremner
The test is pretty much cut and paste from the PGP/MIME version, with obvious updates taken from notmuch output. This also requires setting up gpgsm infrastucture. --- test/T355-smime.sh | 49 + test/test-lib.sh | 1 + 2 files changed, 50

[Patch v4 2/5] cli: S/MIME verification/decryption support

2015-01-18 Thread David Bremner
From: Jameson Graef Rollins The notmuch-show flags --decrypt and --verify will now also process S/MIME multiparts if encountered. Requires gmime-2.6 and gpgsm. --- crypto.c | 20 notmuch-client.h | 5 +++-- 2 files changed, 23

[Patch v4 1/5] test: initial tests for S/MIME and notmuch-emacs

2015-01-18 Thread David Bremner
Test the ability of notmuch-mua-mail to send S/MIME signed (and encrypted) messages; this really relies on existing functionality in message-mode. The dependency on openssl to generate keys seems acceptable since that's the method I got to work for smime signing in emacs. The generated keys and

S/MIME patches, v4

2015-01-18 Thread David Bremner
I took Jamie's advice and simplified the openssl based tests to ignore the actual output. I added a test to generate a signed+encrypted message, and verified that with openssl (in two steps). I'm a bit stumped why the test introduced in patch 5/5 is failing so badly. I'd give even odds that I

Re: [PATCH v1 0/2] Fixes for issues discovered with -fsanitize=address

2015-01-18 Thread David Bremner
Todd t...@electricoding.com writes: I built a copy of notmuch with gcc 4.8's new -fsanitize=address feature and ran the test bench. It pointed out these two issues. Series pushed. Thanks! d ___ notmuch mailing list notmuch@notmuchmail.org

Re: [PATCH] test: prepare test-lib.sh for possible test system debug session

2015-01-18 Thread David Bremner
Tomi Ollila tomi.oll...@iki.fi writes: When something in tests fails one possibility to test is to run the test script as `bash -x TXXX-testname.sh`. As stderr (fd 2) was redirected to separate file during test execution also this set -x (xtrace) output would also go there. test-lib.sh saves

[Patch v4 3/5] test: add S/MIME signature verification test for notmuch CLI

2015-01-18 Thread David Bremner
The test is pretty much cut and paste from the PGP/MIME version, with obvious updates taken from notmuch output. This also requires setting up gpgsm infrastucture. --- test/T355-smime.sh | 49 + test/test-lib.sh | 1 + 2 files changed, 50

S/MIME patches, v4

2015-01-18 Thread David Bremner
I took Jamie's advice and simplified the openssl based tests to ignore the actual output. I added a test to generate a signed+encrypted message, and verified that with openssl (in two steps). I'm a bit stumped why the test introduced in patch 5/5 is failing so badly. I'd give even odds that I

[Patch v4 2/5] cli: S/MIME verification/decryption support

2015-01-18 Thread David Bremner
From: Jameson Graef Rollins jroll...@finestructure.net The notmuch-show flags --decrypt and --verify will now also process S/MIME multiparts if encountered. Requires gmime-2.6 and gpgsm. --- crypto.c | 20 notmuch-client.h | 5 +++-- 2 files changed, 23

[Patch v4 4/5] debian: Recommend gpgsm for S/MIME support

2015-01-18 Thread David Bremner
From: Jameson Graef Rollins jroll...@finestructure.net --- debian/control | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/control b/debian/control index 4bc4cd9..05cd04f 100644 --- a/debian/control +++ b/debian/control @@ -31,7 +31,7 @@ Vcs-Browser:

[Patch v4 5/5] test: add broken test for SMIME decryption with notmuch CLI

2015-01-18 Thread David Bremner
The test JSON here is not correct, but the larger problem is thatit seems like no actual decryption is being done. --- test/T355-smime.sh | 36 1 file changed, 36 insertions(+) diff --git a/test/T355-smime.sh b/test/T355-smime.sh index caedf5e..95dbf8f

[Patch v4 1/5] test: initial tests for S/MIME and notmuch-emacs

2015-01-18 Thread David Bremner
Test the ability of notmuch-mua-mail to send S/MIME signed (and encrypted) messages; this really relies on existing functionality in message-mode. The dependency on openssl to generate keys seems acceptable since that's the method I got to work for smime signing in emacs. The generated keys and

[PATCH v4] nmbug: Add an 'init' command

2015-01-18 Thread W. Trevor King
For folks that want to start versioning a new tag-space, instead of cloning one that someone else has already started. The empty-blob hash-object call avoids errors like: $ nmbug commit error: invalid object 100644 e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 for 'tags/...' fatal:

Re: [DRAFT] New features in Vim interface

2015-01-18 Thread David Bremner
Ian Main im...@stemwinder.org writes: Let me know what you think of the code base and if you are willing to help out with merging the changes (lots of reviews I think mostly). In nmbug commit cb9e7acbb6b I marked the outstanding vim patches from Ian and Franz as moreinfo; we can revisit their

Re: [PATCH v6 2/2] nmbug: Add a 'help' command for folks who don't like --help

2015-01-18 Thread David Bremner
Pushed. I tested with python2.7; I guess we gave up 2.6 a while ago. d ___ notmuch mailing list notmuch@notmuchmail.org http://notmuchmail.org/mailman/listinfo/notmuch

Re: [PATCH v4 1/3] Emacs: Display a message when generating address completion candidates

2015-01-18 Thread David Bremner
Michal Sojka sojk...@fel.cvut.cz writes: The TAB-initiated address completion generates completion candidates synchronously, blocking the UI. Since this can take long time, it is better to let the use know what's happening. --- Pushed this one patch. d

Re: [PATCH v2 1/3] search: Separately report matching and non-matching authors.

2015-01-18 Thread David Bremner
David Edmondson d...@dme.org writes: In addition to the 'authors' attribute of each search result, include 'authors_matched' and 'authors_non_matched' attributes. Both attributes are always included and are formatted as a list of authors. If there are no matching authors, the

Re: [PATCH v2 2/3] emacs: Improved display of matching/non-matching authors.

2015-01-18 Thread David Bremner
David Edmondson d...@dme.org writes: +(defun notmuch-search-author-propertize (authors matching-length) Split `authors' into matching and non-matching authors and propertize appropriately. If no boundary between authors and non-authors is found, assume that all of the authors match. The

[PATCH] doc: add details about Xapian search syntax

2015-01-18 Thread David Bremner
Questions related to the way that probabilistic prefixes and phrases are handled come up quite often and it is nicer to have the documentation self contained. Hopefully putting it in subsections prevents it from being overwhelming. --- doc/man7/notmuch-search-terms.rst | 46

Re: [PATCH] doc: add details about Xapian search syntax

2015-01-18 Thread Jani Nikula
On Sun, 18 Jan 2015, David Bremner da...@tethera.net wrote: Questions related to the way that probabilistic prefixes and phrases are handled come up quite often and it is nicer to have the documentation self contained. Hopefully putting it in subsections prevents it from being overwhelming.

[PATCH 0/3] smime with some refactoring

2015-01-18 Thread Jani Nikula
On Sun, 18 Jan 2015, David Bremner da...@tethera.net wrote: The notmuch-show flags --decrypt and --verify will now also process S/MIME multiparts if encountered. Requires gmime-2.6 and gpgsm. Hi David - I've had some S/MIME patches laying around since 2013, almost forgotten... functionally

[PATCH 2/3] crypto: make crypto ctx initialization an array

2015-01-18 Thread Jani Nikula
--- crypto.c | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-) diff --git a/crypto.c b/crypto.c index 7cd7b69d1221..8e58dcca4ee5 100644 --- a/crypto.c +++ b/crypto.c @@ -74,16 +74,30 @@ create_gpg_context (notmuch_crypto_t *crypto) #endif /*

[PATCH 1/3] crypto: refactor context creation to facilitate further work

2015-01-18 Thread Jani Nikula
--- crypto.c | 27 +-- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/crypto.c b/crypto.c index 6f4a6db9d0f1..7cd7b69d1221 100644 --- a/crypto.c +++ b/crypto.c @@ -24,14 +24,20 @@ /* Create a GPG context (GMime 2.6) */ static notmuch_crypto_context_t *

[PATCH 3/3] doc: add more information on operators.

2015-01-18 Thread David Bremner
More material borrowed from the wiki page on searching --- doc/man7/notmuch-search-terms.rst | 43 ++- 1 file changed, 38 insertions(+), 5 deletions(-) diff --git a/doc/man7/notmuch-search-terms.rst b/doc/man7/notmuch-search-terms.rst index 3b27053..a315fbe

[PATCH 2/3] doc: add material on stemming and wildcards

2015-01-18 Thread David Bremner
This is lightly massaged from the searching page on the wiki. --- doc/man7/notmuch-search-terms.rst | 28 1 file changed, 28 insertions(+) diff --git a/doc/man7/notmuch-search-terms.rst b/doc/man7/notmuch-search-terms.rst index 52f6804..3b27053 100644 ---

[PATCH 1/3] doc: add details about Xapian search syntax

2015-01-18 Thread David Bremner
Questions related to the way that probabilistic prefixes and phrases are handled come up quite often and it is nicer to have the documentation self contained. Hopefully putting it in subsections prevents it from being overwhelming. --- doc/man7/notmuch-search-terms.rst | 52

Re: [PATCH] doc: remove support for rst2man

2015-01-18 Thread Jani Nikula
On Jan 18, 2015 6:56 PM, David Bremner da...@tethera.net wrote: It was becoming increasingly complicated to support rst2man, and there were apparently not many people that relied on it. --- Now's your chance to tell us how useful rst2man support is to you. INSTALL| 7 ++

Re: [PATCH 2/3] crypto: make crypto ctx initialization an array

2015-01-18 Thread David Bremner
Jani Nikula j...@nikula.org writes: --- crypto.c | 30 ++ 1 file changed, 22 insertions(+), 8 deletions(-) A few words about the big picture would be good here, namely that we want to make it easier to support a new protocol.

Re: [PATCH 3/3] cli: crypto: S/MIME verification/decryption support

2015-01-18 Thread David Bremner
Jani Nikula j...@nikula.org writes: The notmuch-show flags --decrypt and --verify will now also process S/MIME multiparts if encountered. Requires gmime-2.6 and gpgsm. Based on work by Jameson Graef Rollins jroll...@finestructure.net. I tend to agree this version is a bit easier to read, if

Announcing Astroid v0.2

2015-01-18 Thread Gaute Hope
Greetings, Astroid (https://github.com/gauteh/astroid) v0.2 is now ready! Astroid is a graphical threads-with-tags mail user agent based on sup and notmuch. Written in C++ using GTK+, WebKit and gmime. # Changes since v0.1 [0] * Allow math to be rendered with MathJax! Enclose math with $

Re: [PATCH v2 2/3] emacs: Improved display of matching/non-matching authors.

2015-01-18 Thread Mark Walters
On Fri, 24 Oct 2014, David Edmondson d...@dme.org wrote: Rather than splitting the :authors attribute, which is error prone, use the separate :authors_matched and :authors_non_matched attributes. This improves the display of authors should one of them include a pipe symbol (|) in their 'from'

[PATCH] doc: remove support for rst2man

2015-01-18 Thread David Bremner
It was becoming increasingly complicated to support rst2man, and there were apparently not many people that relied on it. --- Now's your chance to tell us how useful rst2man support is to you. INSTALL| 7 ++ NEWS | 6 + configure | 20

Re: [PATCH 1/3] crypto: refactor context creation to facilitate further work

2015-01-18 Thread David Bremner
Jani Nikula j...@nikula.org writes: --- crypto.c | 27 +-- 1 file changed, 17 insertions(+), 10 deletions(-) No real objections. Although it's kindof implicit in refactor, it might make sense to note in the commit message that it's just code movement. d

Re: [PATCH v2 1/3] search: Separately report matching and non-matching authors.

2015-01-18 Thread Mark Walters
On Fri, 24 Oct 2014, David Edmondson d...@dme.org wrote: In addition to the 'authors' attribute of each search result, include 'authors_matched' and 'authors_non_matched' attributes. Both attributes are always included and are formatted as a list of authors. If there are no matching authors,

[PATCH] cli: add a tool for starting new message in the emacs ui

2015-01-18 Thread David Bremner
From: Jani Nikula j...@nikula.org Add a tool to start composing an email in the Notmuch Emacs UI with the specified subject, recipients, and message body. --- This version fixes my complaint about the previous version not starting emacs. It does this by starting a new frame, either at the

Re: [PATCH] doc: remove support for rst2man

2015-01-18 Thread David Bremner
Jani Nikula j...@nikula.org writes: Apologies, this is due to having to use an inferior MUA on my phone. Ah, it really is wrapped in the raw version. My mistake, I thought something interesting was going on, not just the usual bad MUA software ;). d

Re: [PATCH] doc: remove support for rst2man

2015-01-18 Thread W. Trevor King
Looks good to me :). Cheers, Trevor -- This email may be signed or encrypted with GnuPG (http://www.gnupg.org). For more information, see http://en.wikipedia.org/wiki/Pretty_Good_Privacy signature.asc Description: OpenPGP digital signature ___

Re: [PATCH] doc: remove support for rst2man

2015-01-18 Thread David Bremner
Jani Nikula j...@nikula.org writes: +Support for using rst2man in place of sphinx to build the +docmumentation has been removed. -mu Otherwise lgtm. Fixed in git. By the way, the parent message displays very oddly for me in emacs24; the text/plain part introduces a bunch of wrapping that

Re: [PATCH] doc: remove support for rst2man

2015-01-18 Thread Jani Nikula
On Jan 18, 2015 10:32 PM, David Bremner da...@tethera.net wrote: Jani Nikula j...@nikula.org writes: +Support for using rst2man in place of sphinx to build the +docmumentation has been removed. -mu Otherwise lgtm. Fixed in git. By the way, the parent message displays very oddly

Re: [PATCH] cli: add a tool for starting new message in the emacs ui

2015-01-18 Thread Tomi Ollila
On Sun, Jan 18 2015, David Bremner da...@tethera.net wrote: From: Jani Nikula j...@nikula.org Add a tool to start composing an email in the Notmuch Emacs UI with the specified subject, recipients, and message body. --- This version fixes my complaint about the previous version not