Re: [PATCH] configure: disallow whitespace in paths, extend checks to $PWD

2019-09-11 Thread Daniel Kahn Gillmor
On Sun 2019-09-01 23:09:46 +0300, Tomi Ollila wrote: > Whitespace in $NOTMUCH_SRCDIR (and $PWD) may work in builds, > but definitely will not work in tests. It would be difficult > to make tests support whitespace in test filename paths -- and > fragile to maintain if done. > > So it is just easier

Re: [PATCH] configure: disallow whitespace in paths, extend checks to $PWD

2019-09-11 Thread David Bremner
Tomi Ollila writes: > Whitespace in $NOTMUCH_SRCDIR (and $PWD) may work in builds, > but definitely will not work in tests. It would be difficult > to make tests support whitespace in test filename paths -- and > fragile to maintain if done. > > So it is just easier and safer to disallow whitespa

[PATCH v4 2/4] emacs: Minor refactoring of crypto code

2019-09-11 Thread Daniel Kahn Gillmor
From: David Edmondson --- emacs/notmuch-crypto.el | 91 + 1 file changed, 47 insertions(+), 44 deletions(-) diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el index 0ab85f4b..457c821c 100644 --- a/emacs/notmuch-crypto.el +++ b/emacs/notmuch-cr

[PATCH v4 4/4] emacs: Improve the reporting of key activity

2019-09-11 Thread Daniel Kahn Gillmor
From: David Edmondson Improve the information provided about key retrieval and key validity. --- emacs/notmuch-crypto.el | 12 ++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch-crypto.el index 9b615a0f..f4585d5e 100644 --- a/emacs

version 4: Retrieve GPG keys asynchronously.

2019-09-11 Thread Daniel Kahn Gillmor
In id:87blw1rldy@tethera.net, bremner identified two of my edits breaking dme's series that permits asynchronous retrieval of OpenPGP keys. This is a revision of that series that should apply to the current master, taking into account my earlier fixes. dme, if you could review i would appreci

[PATCH v4 1/4] emacs: Asynchronous retrieval of GPG keys

2019-09-11 Thread Daniel Kahn Gillmor
From: David Edmondson Rather than blocking emacs while gpg does its' thing, by default run key retrieval asynchronously, possibly updating the display of the message on successful completion. --- emacs/notmuch-crypto.el | 85 +++-- 1 file changed, 74 insertion

[PATCH v4 3/4] emacs: Add notmuch-crypto-gpg-program and use it

2019-09-11 Thread Daniel Kahn Gillmor
From: David Edmondson Allow the user to specify the gpg program to use when retrieving keys, etc., defaulting to the value of `epg-gpg-program'. --- emacs/notmuch-crypto.el | 14 ++ 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/emacs/notmuch-crypto.el b/emacs/notmuch

Re: [PATCH v3 0/4] Retrieve GPG keys asynchronously.

2019-09-11 Thread Daniel Kahn Gillmor
On Tue 2019-09-03 20:49:13 -0300, David Bremner wrote: > David Edmondson writes: > >> Retrieve GPG keys asynchronously. […] > I went back to this series to try and do the last minor things my self, > but unfortunately I got lost in trying to do the rebase. I think it > collides with a couple of d