emacs/notmuch.el:55:1: Error: Cannot open load file: json

2011-04-26 Thread Florian Friesdorf
t IRC: chaoflow on freenode,ircnet,blafasel,OFTC -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20110426/d28b9f32/attachment.pgp>

notmuch painfully slow

2011-04-26 Thread Florian Friesdorf
n freenode,ircnet,blafasel,OFTC -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20110426/b4660b39/attachment.pgp>

doc: notmuch help search-terms, boolean operators

2011-04-26 Thread Austin Clements
The full precedence is rather complicated, once you include all Xapian operators and exceptions. See http://trac.xapian.org/browser/trunk/xapian-core/queryparser/queryparser.lemony, particularly starting at line 1560. Your precedence list is mostly right, except that AND and NOT have the same

emacs/notmuch.el:55:1: Error: Cannot open load file: json

2011-04-26 Thread Jesse Rosenthal
On Thu, 21 Apr 2011 08:16:38 -0700 (PDT), gma wrote: > While attempting to make the 0.5 tarball on my Mac OS X system, I get: What version of OSX? > emacs/notmuch.el:55:1:Error: Cannot open load file: json > make: *** [emacs/notmuch.elc] Error 1 Probably a problem with the emacs version.

doc: notmuch help search-terms, boolean operators

2011-04-26 Thread Jameson Graef Rollins
available operators, though. For instance, I had no idea that XOR was a supported operator. jamie. -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pip

doc: notmuch help search-terms, boolean operators

2011-04-26 Thread Carl Worth
in notmuch. Olly, is the above list of operators complete and in the correct order of precendence? -Carl -- carl.d.worth at intel.com -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <

[PATCH] Remove unused variable from signal handlers

2011-04-26 Thread Soeren Finster
No effect but lesser gcc complaints Signed-off-by: Soeren Finster --- notmuch-new.c |4 +--- notmuch-tag.c |4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/notmuch-new.c b/notmuch-new.c index 4874a1c..271ef9a 100644 --- a/notmuch-new.c +++ b/notmuch-new.c @@ -64,10

emacs/notmuch.el:55:1: Error: Cannot open load file: json

2011-04-26 Thread Gabe Anzelini
I was able to get to install after installing emacs, however homebrew does not allow emacs as a dependancy and so I was trying to get this to work without it. On Tue, Apr 26, 2011 at 04:39:16PM -0400, Jesse Rosenthal wrote: > On Thu, 21 Apr 2011 08:16:38 -0700 (PDT), gma wrote: > > While

(auto-)tagging sent messages

2011-04-26 Thread Xavier Maillard
Hi Carl, On Mon, 25 Apr 2011 13:27:26 -0700, Carl Worth wrote: > > My goal is to use notmuch remotely directly on my IMAP server but there > > are problems when doing notmuch new in the dovecot tree (dovecot index > > files if I recall correctly). > > Can you describe what the specific problems

[PATCH 00/10] Fix 'notmuch new' atomicity issues

2011-04-26 Thread Austin Clements
Bump. Now rebased against current head (with no conflicts) on atomic-new-v2 (and for-review/atomic-new-v2) at http://awakening.csail.mit.edu/git/notmuch.git/ On Fri, Feb 18, 2011 at 2:58 AM, Austin Clements wrote: > This patch series modifies notmuch new to perform all operations > atomically

[PATCH] Remove unused variable from signal handlers

2011-04-26 Thread Soeren Finster
No effect but lesser gcc complaints Signed-off-by: Soeren Finster s...@9by6.org --- notmuch-new.c |4 +--- notmuch-tag.c |4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/notmuch-new.c b/notmuch-new.c index 4874a1c..271ef9a 100644 --- a/notmuch-new.c +++

doc: notmuch help search-terms, boolean operators

2011-04-26 Thread Florian Friesdorf
`notmuch help search-terms` currently states: In addition to individual terms, multiple terms can be combined with Boolean operators (and, or, not, etc.).. I would like to replace the etc with a full list and document the operator precedence. In lib/notmuch.h for notmuch_query_create I found a

Re: doc: notmuch help search-terms, boolean operators

2011-04-26 Thread Carl Worth
On Wed, 27 Apr 2011 00:24:38 +0200, Florian Friesdorf f...@chaoflow.net wrote: I would like to replace the etc with a full list and document the operator precedence. Yes, that's a fine idea. In lib/notmuch.h for notmuch_query_create I found a pointer to xapian docs [2], which states that AND

Re: doc: notmuch help search-terms, boolean operators

2011-04-26 Thread Jameson Graef Rollins
On Tue, 26 Apr 2011 16:01:17 -0700, Carl Worth cwo...@cworth.org wrote: Complete list of boolean operators in order of precedence: - NOT - AND - XOR - OR Is this correct? If yes, I would extend the manpage accordingly. Currently, notmuch doesn't implement this behavior but relies