[notmuch] Debian package update ?

2010-04-05 Thread Xavier Maillard
Hi, I feel like being far behind master with my current (official) Debian package. Is there any chance to get a more recent one soon ? I know I was given instructions to build my own from the Git repository but I am still stuck and I did not get any success in doing so :/ Regards, Xavier

Re: [notmuch] Bulk message tagging

2010-04-05 Thread Xavier Maillard
On Sun, 04 Apr 2010 07:38:03 -0400, Jesse Rosenthal jrosent...@jhu.edu wrote: On Sun, 04 Apr 2010 06:37:53 +0200, Xavier Maillard x...@gnu.org wrote: Is there an easy way to mark a whole bunch of message (restricted in a region, result of a search, ...) ? In addition to the * command that

Re: [notmuch] Bulk message tagging

2010-04-05 Thread Jason White
Xavier Maillard x...@gnu.org wrote: Sadly, git is not really something I know wll enough to play with all this stuff :( http://progit.org/book/ ___ notmuch mailing list notmuch@notmuchmail.org http://notmuchmail.org/mailman/listinfo/notmuch

Re: [notmuch] [PATCH] format_part_json: part_content-data is not null terminated

2010-04-05 Thread David Edmondson
On Thu, 01 Apr 2010 14:05:06 +0200, Michal Sojka sojk...@fel.cvut.cz wrote: On Thu, 04 Mar 2010, Gregor Hoffleit wrote: - printf (, \content\: %s, json_quote_str (ctx, (char *) part_content-data)); + content_data = talloc_size (ctx, part_content-len+1); + memcpy (content_data,

[notmuch] vala, this is notmuch. notmuch, this is vala

2010-04-05 Thread Sebastian Spaeth
I really want to replace my address book with dynamic notmuch searches and while python gives me those in 0.3 seconds or so, I wanted better. So I bound notmuch.so to vala (at least what I needed) and played with the code a bit. The resulting 100 lines of vala code are here:

Re: [notmuch] vala, this is notmuch. notmuch, this is vala

2010-04-05 Thread Enrico Zini
On Mon, Apr 05, 2010 at 02:49:23PM +0200, Sebastian Spaeth wrote: So I bound notmuch.so to vala (at least what I needed) and played with the code a bit. The resulting 100 lines of vala code are here: Ooh, a .vapi for notmuch, that is something that makes me happy. It could be shipped with

Re: [notmuch] pull request [was Re: pull request]

2010-04-05 Thread Carl Worth
On Sun, 04 Apr 2010 09:08:34 +0100, David Edmondson d...@dme.org wrote: It's the 'for-cworth' branch of git://github.com/dme/notmuch.git. There's also a simple update to tell git to ignore notmuch-shared. Thanks. This is pushed. -Carl pgpRssLrxCuvt.pgp Description: PGP signature

[notmuch] [PATCH v3] notmuch-query.el: new file to support access to the notmuch database.

2010-04-05 Thread david
From: David Bremner brem...@unb.ca Initially this file provides one main function notmuch-query-get-threads, which takes a set of search terms, and returns a parsed set of matching threads as a lisp data structure. A set of notmuch-query-map-* functions are provided to help map functions over

Re: [notmuch] [PATCH] format_part_json: part_content-data is not null terminated

2010-04-05 Thread Carl Worth
On Mon, 05 Apr 2010 10:36:38 +0100, David Edmondson d...@dme.org wrote: Agreed. How about this patch: http://github.com/dme/notmuch/commit/5f23ae341788d28e455e53488d184d8caaa618c5 ? Thanks, David. (And thanks also, to David Bremner for providing a version with cleaned-up whitespace

Re: [notmuch] [PATCH v3] notmuch-query.el: new file to support access to the notmuch database.

2010-04-05 Thread Carl Worth
On Mon, 5 Apr 2010 13:46:16 -0300, da...@tethera.net wrote: Commentary on this revision of the patch. - Rebased to current master. - Last time I checked, used by dme's json rewrite of the emacs ui - Warnings eliminated by including the new notmuch-lib.el Very nice stuff

[notmuch] cnotmuch 0.1.1 release

2010-04-05 Thread Sebastian Spaeth
On 2010-04-03, C?dric Cabessa wrote: > libnotmuch.so is in my personal folder, I'd like to use LD_LIBRARY_PATH for > that. > The problem is that find_library does not read this variable, but hopefully > CDLL does. > > I suggest to not use find_library. If the library do not exist, we just have >

[notmuch] Debian package update ?

2010-04-05 Thread Xavier Maillard
Hi, I feel like being far behind master with my current (official) Debian package. Is there any chance to get a more recent one soon ? I know I was given instructions to build my own from the Git repository but I am still stuck and I did not get any success in doing so :/ Regards, Xavier

[notmuch] Bulk message tagging

2010-04-05 Thread Xavier Maillard
On Sun, 04 Apr 2010 07:38:03 -0400, Jesse Rosenthal wrote: > On Sun, 04 Apr 2010 06:37:53 +0200, Xavier Maillard wrote: > > Is there an easy way to mark a whole bunch of message (restricted > > in a region, result of a search, ...) ? > > In addition to the "*" command that was mentioned, there

[notmuch] Bulk message tagging

2010-04-05 Thread Xavier Maillard
On Sun, 4 Apr 2010 15:46:40 +1000, Jason White wrote: > Xavier Maillard wrote: > > > You are right I forgot to mention I am using the GNU Emacs > > interface exclusively. > > Then it's the * command from the buffer with the mail threads dislayed. > See also the ?h command for further help.

[notmuch] Bulk message tagging

2010-04-05 Thread Jason White
Xavier Maillard wrote: > Sadly, git is not really something I know wll enough to play with > all this stuff :( http://progit.org/book/

[notmuch] [PATCH] format_part_json: part_content->data is not null terminated

2010-04-05 Thread David Edmondson
On Thu, 01 Apr 2010 14:05:06 +0200, Michal Sojka wrote: > On Thu, 04 Mar 2010, Gregor Hoffleit wrote: > > - printf (", \"content\": %s", json_quote_str (ctx, (char *) > > part_content->data)); > > + content_data = talloc_size (ctx, part_content->len+1); > > + memcpy (content_data, (char

[notmuch] vala, this is notmuch. notmuch, this is vala

2010-04-05 Thread Sebastian Spaeth
I really want to replace my address book with dynamic notmuch searches and while python gives me those in 0.3 seconds or so, I wanted better. So I bound notmuch.so to vala (at least what I needed) and played with the code a bit. The resulting 100 lines of vala code are here:

[notmuch] vala, this is notmuch. notmuch, this is vala

2010-04-05 Thread Enrico Zini
bed... Name: not available Type: application/pgp-signature Size: 490 bytes Desc: Digital signature URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100405/d04bdd78/attachment.pgp>

[notmuch] vala, this is notmuch. notmuch, this is vala

2010-04-05 Thread Adrien Bustany
On Mon, 5 Apr 2010 14:50:04 +0100, Enrico Zini wrote: > On Mon, Apr 05, 2010 at 02:49:23PM +0200, Sebastian Spaeth wrote: > >> So I bound notmuch.so to vala (at least what I needed) and played with >> the code a bit. The resulting 100 lines of vala code are here: > > Ooh, a .vapi for notmuch,

[notmuch] pull request [was Re: pull request]

2010-04-05 Thread Carl Worth
ttachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100405/5ba0842b/attachment.pgp>

[notmuch] [PATCH v3] notmuch-query.el: new file to support access to the notmuch database.

2010-04-05 Thread da...@tethera.net
From: David Bremner Initially this file provides one main function notmuch-query-get-threads, which takes a set of search terms, and returns a parsed set of matching threads as a lisp data structure. A set of notmuch-query-map-* functions are provided to help map functions over

[notmuch] [PATCH v3] notmuch-query.el: new file to support access to the notmuch database.

2010-04-05 Thread David Edmondson
On Mon, 5 Apr 2010 13:46:16 -0300, david at tethera.net wrote: > diff --git a/emacs/notmuch-query.el b/emacs/notmuch-query.el > new file mode 100644 > index 000..3f1a7b3 > --- /dev/null > +++ b/emacs/notmuch-query.el > @@ -0,0 +1,90 @@ > +; notmuch-query.el --- provide an emacs api to query

[notmuch] [PATCH] format_part_json: part_content->data is not null terminated

2010-04-05 Thread Carl Worth
bbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100405/f6848b65/attachment.pgp>

[notmuch] [PATCH v3] notmuch-query.el: new file to support access to the notmuch database.

2010-04-05 Thread Carl Worth
itched to this and the old calls to "notmuch search" removed. -Carl -- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100405/7dc9eae2/attachment.pgp>

[notmuch] vala, this is notmuch. notmuch, this is vala

2010-04-05 Thread Carl Worth
re Size: 189 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100405/09fbe2dd/attachment.pgp>

Notmuch release 0.1 now available

2010-04-05 Thread Carl Worth
-- next part -- A non-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100405/df78d232/attachment.pgp>