Re: [RFC PATCH] rfc: make 'make distclean' always use current Makefile.config

2017-01-07 Thread David Bremner
Tomi Ollila writes: I like the idea here; it's an annoying wait. Could we do something similar for make clean? > ... and not recreate it (slowly) if 'configure' changed, just to > be deleteted later during 'make distclean'. spellink > +# In case of 'make distclean' have configure as order-only

Re: [PATCH] emacs: show: stop display of appliaction/* parts

2017-01-07 Thread Tomas Nordin
Good evening > emacs/notmuch-show.el | 10 +- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/emacs/notmuch-show.el b/emacs/notmuch-show.el > index 364004b..42734ac 100644 > --- a/emacs/notmuch-show.el > +++ b/emacs/notmuch-show.el > @@ -1227,7 +1227,15 @@ matched." >

[PATCH] emacs: show: stop display of appliaction/* parts

2017-01-07 Thread Mark Walters
Gnus seems to display application/zip and application/tar by default. This doesn't seem desirable so we override it. We only override ifthe user has not customized mm-inline-override-types themselves. --- This was mentioned on irc today and this might be a reasonable way of doing this. It does m

Re: archives and pictures display by default

2017-01-07 Thread David Bremner
David Bremner writes: > Tomas Nordin writes: > >> Hello Notmuchers >> >> When I get zip files as attachment with pictures, they all expand for >> viewing. Can I turn this off? >> >> Best regards >> -- > > I agree this a bad default. I haven't had a chance to investigate much, > but it seems lik

Re: archives and pictures display by default

2017-01-07 Thread David Bremner
Tomas Nordin writes: > Hello Notmuchers > > When I get zip files as attachment with pictures, they all expand for > viewing. Can I turn this off? > > Best regards > -- I agree this a bad default. I haven't had a chance to investigate much, but it seems like the place we can control this is by s

YABFR: 0.23.5

2017-01-07 Thread David Bremner
I'm planning to release 0.23.5 with id:1483291230-9259-1-git-send-email-tomi.oll...@iki.fi We could probably do a full release, but I don't really have time to shepherd on right now. And this fix is moderately important for people that care about rpaths. d signature.asc Description: PGP s

Re: [PATCH] lib: fix the todo comment placement on NOTMUCH_STATUS_XAPIAN_EXCEPTION

2017-01-07 Thread David Bremner
Jani Nikula writes: > The todo comment got separated from the status it's related to at > commit 3f32fd8a1c06 ("Add missing comment for > NOTMUCH_STATUS_READONLY_DATABASE."). Later, commit b65ca8e0ba5e ("lib: > modify notmuch.h for automatic document generation") moved it, but to > the wrong plac

Re: [PATCH 1/2] cli/config: allocate config using talloc_zero

2017-01-07 Thread David Bremner
Jani Nikula writes: > Do not initialize each field separately. It's more robust to allocate > the config with zero initialization, and only set the non-zero > defaults individually. Series pushed to master. ___ notmuch mailing list notmuch@notmuchmail.

[PATCH] test: allow user to choose which gdb to run tests with

2017-01-07 Thread Tomi Ollila
The variable used for selecting gdb is TEST_GDB, consistent with TEST_CC and TEST_EMACS{,CLIENT}. --- I tested this on FreeBSD kvm virtual machine, changed env PATH=/usr/local/bin:$PATH CPATH=/usr/local/include LIBRARY_PATH=/usr/local/lib script typescript gmake test to env TEST_GDB=/usr/local

Re: [PATCH 1/2] lib: use glib for sha1 digests instead of embedding libsha1

2017-01-07 Thread Tomi Ollila
On Fri, Jan 06 2017, Jani Nikula wrote: > We already depend on glib both directly and indirectly (via gmime). We > might as well make use of its facilities. Drop the embedded libsha1 > and use glib for sha1 digests. Nice! tests pass. probably doesn't collide with anything in review queue. +1 T