[PATCH] add a number of new feature ideas to TODO file

2010-04-15 Thread Dirk Hohndel
Signed-off-by: Dirk Hohndel --- TODO | 45 + 1 files changed, 45 insertions(+), 0 deletions(-) diff --git a/TODO b/TODO index 14c5fd0..226f243 100644 --- a/TODO +++ b/TODO @@ -56,6 +56,24 @@ Change 'a' command in thread-view mode to only archive

[PATCH] configure: Fix syntax error (spaces in assignment).

2010-04-15 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/20100415/5d0e75f5/attachment.pgp>

[PATCH] configure: Add support for GMime 2.6

2010-04-15 Thread Adrien Bustany
Notmuch compiles just fine with GMime 2.6, so accept it in the configure script. --- configure |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/configure b/configure index eebe075..d4d462f 100755 --- a/configure +++ b/configure @@ -188,6 +188,11 @@ if pkg-config

The archive operation should only archive open messages

2010-04-15 Thread Carl Worth
current implementation. So that's why we're here talking I think. :-) -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/notmuc

[notmuch] Bulk message tagging

2010-04-15 Thread Carl Worth
need to arrange for notmuch to accept search specifications on stdin or so. -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/20100415/726d72f7/attachment.pgp>

"bouncing" messages

2010-04-15 Thread Jameson Rollins
a command to notmuch-show to do the same thing. Any suggestions? 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/pipermail/notmuch/attachm

The archive operation should only archive open messages

2010-04-15 Thread Jesse Rosenthal
On Thu, 15 Apr 2010 13:41:17 -0700, Carl Worth wrote: > A bad bug occurs when paging through the thread with the space > bar. After showing me these few messages, it will then proceed to > archive *all* the messages in the thread (not only those it showed > me). And I'm likely to be unaware of

[PATCH] emacs: Re-arrange message sending code

2010-04-15 Thread David Edmondson
On Thu, 15 Apr 2010 16:50:27 +0100, David Edmondson wrote: > Define a new `mail-user-agent' (`notmuch-user-agent') and use it by > default. Re-arrange various routines that send mail to use this > (compose, reply, forward). Insert a `User-Agent:' header by default. I meant to add that this was a

The archive operation should only archive open messages

2010-04-15 Thread Jameson Rollins
on-text attachment was scrubbed... Name: not available Type: application/pgp-signature Size: 835 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100415/2a44b143/attachment.pgp>

[PATCH] emacs: Re-arrange message sending code

2010-04-15 Thread David Edmondson
Define a new `mail-user-agent' (`notmuch-user-agent') and use it by default. Re-arrange various routines that send mail to use this (compose, reply, forward). Insert a `User-Agent:' header by default. --- emacs/notmuch-hello.el |2 + emacs/notmuch-mua.el | 94

[notmuch] Bulk message tagging

2010-04-15 Thread Jesse Rosenthal
On Thu, 15 Apr 2010 16:04:38 -0400, Jesse Rosenthal wrote: > Not quite true: the region command only executes one "notmuch tag" > command over "id:X or id:Y or id:Z or ...". Sorry -- I meant, of course: over "thread:X or thread:Y or thread:Z or ..."

added feature idea page to the wiki

2010-04-15 Thread Dirk Hohndel
I figured we should have a central place to collect feature ideas - finding them in the mail archives (and IRC logs) is getting old... So I started a feature idea / request page on the wiki - please comment and add your own requests. http://notmuchmail.org/feature-requests/ /D -- Dirk

[notmuch] Bulk message tagging

2010-04-15 Thread Jesse Rosenthal
On Wed, 14 Apr 2010 17:59:01 -0700, Carl Worth wrote: > We could fix all[*] the bugs of "*" by changing it to simply call the > new region-based tagging function. The only concern I have with that is > that it might be significantly slower, (it will execute N "notmuch tag" > commands to tag the

The archive operation should only archive open messages

2010-04-15 Thread Dirk Hohndel
On Thu, 15 Apr 2010 13:41:17 -0700, Carl Worth wrote: > One of the searches that I use most frequently, (for mail that I want to > respond to on a fairly timely basis), is > > tag:inbox and tag:to-me [*] > > Sometimes, this search will show a large mailing-list thread with only a

The archive operation should only archive open messages

2010-04-15 Thread Carl Worth
s scrubbed... Name: not available Type: application/pgp-signature Size: 189 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100415/ce17d605/attachment.pgp>

[PATCH] First tests for JSON output and UTF-8 in mail body and subject

2010-04-15 Thread Carl Worth
Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100415/75ca4410/attachment.pgp>

[PATCH] allow to not sort the search results

2010-04-15 Thread Olly Betts
Sebastian Spaeth writes: > On 2010-04-14, Jason White wrote: > > > Also add a --sort=unsorted command line option to notmuch search to test > > > this. > > > > Does this provide relevance-ranked search results? I think relevance ranking > > is the Xapian default if a sort order isn't specified.

[PATCH] RFC: User-Agent header

2010-04-15 Thread Carl Worth
t; output or something. I can't give any reason for this though. I'll fix this. -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/20100415/3eacf251/attachment.pgp>

[PATCH] configure: Fix syntax error (spaces in assignment).

2010-04-15 Thread Gregor Hoffleit
Before and after the assignment operator, no spaces are allowed. I don't know if there are any /bin/sh which allow spaces, but at least in bash, csh and zsh, the former code was no valid assigment. --- configure |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure

[PATCH] test-lib.sh: Add explicit license detail, with change from GPLv2 to GPLv2+.

2010-04-15 Thread Carl Worth
9 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20100415/6439b50d/attachment.pgp>

[PATCH] Try to provide search buffers with titles from notmuch-folders.

2010-04-15 Thread David Bremner
On Thu, 15 Apr 2010 08:16:09 -0400, Servilio Afre Puentes wrote: > --- > emacs/notmuch.el | 11 ++- > 1 files changed, 10 insertions(+), 1 deletions(-) > Thanks very much for the contribution. It would be nice (and Carl will almost certainly ask for this) to have a meaningful commit

[PATCH] First tests for JSON output and UTF-8 in mail body and subject

2010-04-15 Thread Michal Sojka
On Thu, 15 Apr 2010, Carl Worth wrote: > On Tue, 13 Apr 2010 18:37:57 +0200, Gregor Hoffleit > wrote: > > The test suite doesn't yet cover --format=json output nor UTF-8 in > > subject or body. > > > > This patch starts with test cases for 'search --format=json' and > > 'show --format=json'. >

[PATCH] Try to provide search buffers with titles from notmuch-folders.

2010-04-15 Thread Servilio Afre Puentes
--- emacs/notmuch.el | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index be09f42..17e0e86 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -696,6 +696,15 @@ characters as well as `_.+-'. (apply

[PATCH] configure: Fix syntax error (spaces in assignment).

2010-04-15 Thread Gregor Hoffleit
Before and after the assignment operator, no spaces are allowed. I don't know if there are any /bin/sh which allow spaces, but at least in bash, csh and zsh, the former code was no valid assigment. --- configure |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure

[PATCH] Try to provide search buffers with titles from notmuch-folders.

2010-04-15 Thread Servilio Afre Puentes
--- emacs/notmuch.el | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/emacs/notmuch.el b/emacs/notmuch.el index be09f42..17e0e86 100644 --- a/emacs/notmuch.el +++ b/emacs/notmuch.el @@ -696,6 +696,15 @@ characters as well as `_.+-'. (apply

Re: [PATCH] allow to not sort the search results

2010-04-15 Thread Olly Betts
Sebastian Spaeth writes: On 2010-04-14, Jason White wrote: Also add a --sort=unsorted command line option to notmuch search to test this. Does this provide relevance-ranked search results? I think relevance ranking is the Xapian default if a sort order isn't specified. Yes, by

Re: [PATCH] Try to provide search buffers with titles from notmuch-folders.

2010-04-15 Thread David Bremner
On Thu, 15 Apr 2010 08:16:09 -0400, Servilio Afre Puentes servi...@gmail.com wrote: --- emacs/notmuch.el | 11 ++- 1 files changed, 10 insertions(+), 1 deletions(-) Thanks very much for the contribution. It would be nice (and Carl will almost certainly ask for this) to have a

[PATCH] emacs: Re-arrange message sending code

2010-04-15 Thread David Edmondson
Define a new `mail-user-agent' (`notmuch-user-agent') and use it by default. Re-arrange various routines that send mail to use this (compose, reply, forward). Insert a `User-Agent:' header by default. --- emacs/notmuch-hello.el |2 + emacs/notmuch-mua.el | 94

Re: [PATCH] emacs: Re-arrange message sending code

2010-04-15 Thread David Edmondson
On Thu, 15 Apr 2010 16:50:27 +0100, David Edmondson d...@dme.org wrote: Define a new `mail-user-agent' (`notmuch-user-agent') and use it by default. Re-arrange various routines that send mail to use this (compose, reply, forward). Insert a `User-Agent:' header by default. I meant to add that

Re: [PATCH] First tests for JSON output and UTF-8 in mail body and subject

2010-04-15 Thread Carl Worth
On Thu, 15 Apr 2010 10:33:46 +0200, Michal Sojka sojk...@fel.cvut.cz wrote: are you still interrested in modular test suite from git? If so, could you please look at id:87mxxg7bxo@steelpick.2x.cz and tell me your opinion. I'm still updating the modularized tests to match the state in

Re: [notmuch] Bulk message tagging

2010-04-15 Thread Jesse Rosenthal
On Wed, 14 Apr 2010 17:59:01 -0700, Carl Worth cwo...@cworth.org wrote: We could fix all[*] the bugs of * by changing it to simply call the new region-based tagging function. The only concern I have with that is that it might be significantly slower, (it will execute N notmuch tag commands to

Re: [notmuch] Bulk message tagging

2010-04-15 Thread Jesse Rosenthal
On Thu, 15 Apr 2010 16:04:38 -0400, Jesse Rosenthal jrosent...@jhu.edu wrote: Not quite true: the region command only executes one notmuch tag command over id:X or id:Y or id:Z or Sorry -- I meant, of course: over thread:X or thread:Y or thread:Z or ...

The archive operation should only archive open messages

2010-04-15 Thread Carl Worth
One of the searches that I use most frequently, (for mail that I want to respond to on a fairly timely basis), is tag:inbox and tag:to-me [*] Sometimes, this search will show a large mailing-list thread with only a few messages open. Perhaps part-way through the thread, someone

bouncing messages

2010-04-15 Thread Jameson Rollins
Does anyone know how to bounce a message, in the mutt sense of the term where the message is send unaltered to a new recipient, in notmuch/emacs? I can't find any way to do it with message-mode. I think this was very useful feature in mutt, and it would be great if we could add a command to

added feature idea page to the wiki

2010-04-15 Thread Dirk Hohndel
I figured we should have a central place to collect feature ideas - finding them in the mail archives (and IRC logs) is getting old... So I started a feature idea / request page on the wiki - please comment and add your own requests. http://notmuchmail.org/feature-requests/ /D -- Dirk

[PATCH] configure: Add support for GMime 2.6

2010-04-15 Thread Adrien Bustany
Notmuch compiles just fine with GMime 2.6, so accept it in the configure script. --- configure |5 + 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/configure b/configure index eebe075..d4d462f 100755 --- a/configure +++ b/configure @@ -188,6 +188,11 @@ if pkg-config

Re: [PATCH] configure: Fix syntax error (spaces in assignment).

2010-04-15 Thread Carl Worth
On Thu, 15 Apr 2010 11:51:47 +0200, Gregor Hoffleit gre...@hoffleit.de wrote: Before and after the assignment operator, no spaces are allowed. I don't know if there are any /bin/sh which allow spaces, but at least in bash, csh and zsh, the former code was no valid assigment. Thanks, Gregor. I