Re: [PATCH] Use the Xapian::DB_RETRY_LOCK flag when available

2016-05-03 Thread David Bremner
Istvan Marko writes: > Xapian 1.3 has introduced the DB_RETRY_LOCK flag (Xapian bug > 275). Detect it in configure and use it if available. With this flag > commands that need the write lock will wait for their turn instead of > aborting when it's not immediately available.

[PATCH] configure: replace ${CXXLAGS} with ${CXXFLAGS_for_sh}

2016-05-03 Thread Tomi Ollila
Variable CXXLAGS expands to nothing, CXXFLAGS something unusable here; CXXFLAGS_for_sh expands to what we expect here. --- I was palying with a patch set that enables 'set -eu' in usable way when I noticed this... configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH] Use the Xapian::DB_RETRY_LOCK flag when available

2016-05-03 Thread Jani Nikula
On Tue, 03 May 2016, Istvan Marko wrote: > Xapian 1.3 has introduced the DB_RETRY_LOCK flag (Xapian bug > 275). Detect it in configure and use it if available. With this flag > commands that need the write lock will wait for their turn instead of > aborting when it's not

Re: Disabling zip archives preview

2016-05-03 Thread Sanel Zukan
David Edmondson writes: > Remove "application/zip" from `mm-inlined-types': > > (setq mm-inlined-types (remove "application/zip" mm-inlined-types)) Thanks! Cheers, Sanel ___ notmuch mailing list notmuch@notmuchmail.org

[PATCH] Use the Xapian::DB_RETRY_LOCK flag when available

2016-05-03 Thread Istvan Marko
Xapian 1.3 has introduced the DB_RETRY_LOCK flag (Xapian bug 275). Detect it in configure and use it if available. With this flag commands that need the write lock will wait for their turn instead of aborting when it's not immediately available. --- configure | 25 -

Re: Disabling zip archives preview

2016-05-03 Thread David Edmondson
On Tue, May 03 2016, Sanel Zukan wrote: > Hi guys, > > Pardon me if this question was asked before, is it possible to disable > automatic preview of zip/archive attachments and keep it toggled as > hidden? > > I often get spam (who does not?) with zip archives and some javascript > junk, which

Disabling zip archives preview

2016-05-03 Thread Sanel Zukan
Hi guys, Pardon me if this question was asked before, is it possible to disable automatic preview of zip/archive attachments and keep it toggled as hidden? I often get spam (who does not?) with zip archives and some javascript junk, which emacs happily open and tries to paint; beside

Re: [PATCH v1 1/2] emacs: Observe the charset of MIME parts when reading them.

2016-05-03 Thread David Edmondson
On Mon, May 02 2016, Mark Walters wrote: > On Sat, 30 Apr 2016, David Edmondson wrote: >> `notmuch--get-bodypart-raw' previously assumed that all non-binary MIME >> parts could be successfully read by assuming that they were UTF-8 >> encoded. This was demonstrated to be wrong,