[RFC Patch v2 3/3] debian: install info files

2013-04-24 Thread da...@tethera.net
From: David Bremner It seems dh_installinfo doesn't understand wildcards or look in debian/tmp --- debian/notmuch-emacs.info | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 debian/notmuch-emacs.info diff --git a/debian/notmuch-emacs.info

[RFC Patch v2 2/3] man: partial conversion to pod.

2013-04-24 Thread da...@tethera.net
From: David Bremner This allows generation of man page and info document from the same source. It is also a bit more friendly to edit for most people. The conversion was done as follows: % groff -e -mandoc -Tascii -rHY=0 $* | rman -f POD | sed -e '/./,/^$/!d' -e 's/

Second draft of info manual

2013-04-24 Thread da...@tethera.net
In order to get docs both as man pages and as info docs for reading in emacs, I decided to try converting a couple man pages to pod. There turned out to a painful amount of infrastructure needed to get this working, so I didn't get much done on the notmuch-emacs docs. I think all the

[PATCH] go: use a different goconfig package

2013-04-24 Thread Tomi Ollila
On Wed, Apr 24 2013, David Bremner wrote: > Justus Winter <4winter at informatik.uni-hamburg.de> writes: > >> The notmuch-addrlookup utility uses a third party library to read the >> notmuch configuration file. The previously used implementation at >> "github.com/kless/goconfig" vanished, so

forwarding multiple messages from notmuch emacs

2013-04-24 Thread Jeremy Nickurak
> notmuch mailing list > notmuch at notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch > > -- next part -- An HTML attachment was scrubbed... URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20130424/e6285eb3/attachment.html>

remove unused tags from the database / emacs ui?

2013-04-24 Thread Jani Nikula
On Wed, 24 Apr 2013, ingo wrote: > I have some tags which were created by afew tests, or just misspelling tags. > These tags are now unused, but seem to still be in the database, or cached > in the emacs ui, because I get these tags as possibilities in "add tags" > list. Apparently you still

[PATCH] debian: package ruby bindings

2013-04-24 Thread Felipe Contreras
On Tue, Apr 23, 2013 at 6:35 PM, David Bremner wrote: > Felipe Contreras writes: > >> On Mon, Apr 15, 2013 at 5:34 AM, David Bremner wrote: >>> >>> OK, but that doesn't really help us deal with support requests e.g. on IRC. >>> Some "feature requests" for the bindings: >> >> Can you point to

Re: [PATCH] debian: package ruby bindings

2013-04-24 Thread Felipe Contreras
On Tue, Apr 23, 2013 at 6:35 PM, David Bremner brem...@debian.org wrote: Felipe Contreras felipe.contre...@gmail.com writes: On Mon, Apr 15, 2013 at 5:34 AM, David Bremner brem...@debian.org wrote: OK, but that doesn't really help us deal with support requests e.g. on IRC. Some feature

remove unused tags from the database / emacs ui?

2013-04-24 Thread ingo
Hi all, I have recently started using notmuch, and may stick with it ;-) There's one thing, though. I have some tags which were created by afew tests, or just misspelling tags. These tags are now unused, but seem to still be in the database, or cached in the emacs ui, because I get these tags

Re: remove unused tags from the database / emacs ui?

2013-04-24 Thread Jani Nikula
On Wed, 24 Apr 2013, ingo ma...@2b1.de wrote: I have some tags which were created by afew tests, or just misspelling tags. These tags are now unused, but seem to still be in the database, or cached in the emacs ui, because I get these tags as possibilities in add tags list. Apparently you

Re: remove unused tags from the database / emacs ui?

2013-04-24 Thread ingo
Hi Jani, thank you for your help, you helped in the right direction. All mails tagged with some of those unwanted tags was also tagged spam. And spam is configured to not show up in normal searches, that's why I was unable to find them. Now all those tags have been removed, and it even seems to

Re: [PATCH] go: use a different goconfig package

2013-04-24 Thread Tomi Ollila
On Wed, Apr 24 2013, David Bremner da...@tethera.net wrote: Justus Winter 4win...@informatik.uni-hamburg.de writes: The notmuch-addrlookup utility uses a third party library to read the notmuch configuration file. The previously used implementation at github.com/kless/goconfig vanished, so

Re: [PATCH] go: use a different goconfig package

2013-04-24 Thread Justus Winter
Quoting David Bremner (2013-04-24 00:51:11) Justus Winter 4win...@informatik.uni-hamburg.de writes: The notmuch-addrlookup utility uses a third party library to read the notmuch configuration file. The previously used implementation at github.com/kless/goconfig vanished, so this patch

Re: forwarding multiple messages from notmuch emacs

2013-04-24 Thread Jeremy Nickurak
Adam On Tue, Apr 23, 2013 at 10:33 AM, Daniel Kahn Gillmor d...@fifthhorseman.net wrote: hi notmuch folks-- i'd like to be able to forward several messages from a given thread (up to and including the whole thread) to someone else. I use notmuch-emacs. I don't think it's possible to do

Re: forwarding multiple messages from notmuch emacs

2013-04-24 Thread Jeremy Nickurak
Sigh. Premature posting... Adam Wolfe Gordon on here gave me a tip for this. It's not perfect, but it works: Start forwarding each of the emails, and just cut-and-paste the #mml../#mml sections out of the buffers into a new email. That'll have the effect of forwarding all the emails. On Wed,

Second draft of info manual

2013-04-24 Thread david
In order to get docs both as man pages and as info docs for reading in emacs, I decided to try converting a couple man pages to pod. There turned out to a painful amount of infrastructure needed to get this working, so I didn't get much done on the notmuch-emacs docs. I think all the

[RFC Patch v2 1/3] info: start info documentation.

2013-04-24 Thread david
From: David Bremner brem...@debian.org Initially, just a skeleton of documentation for the emacs interface. There are a few dangling references to other info pages; these are to be generated from the man pages in a following commit. As far as actual documentation, so far this contains only a

[RFC Patch v2 3/3] debian: install info files

2013-04-24 Thread david
From: David Bremner brem...@debian.org It seems dh_installinfo doesn't understand wildcards or look in debian/tmp --- debian/notmuch-emacs.info | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 debian/notmuch-emacs.info diff --git a/debian/notmuch-emacs.info

[RFC Patch v2 2/3] man: partial conversion to pod.

2013-04-24 Thread david
From: David Bremner brem...@debian.org This allows generation of man page and info document from the same source. It is also a bit more friendly to edit for most people. The conversion was done as follows: % groff -e -mandoc -Tascii -rHY=0 $* | rman -f POD | sed -e '/./,/^$/!d' -e 's/ Some