[PATCH 1/1] devel: news2wiki to recognize yyyy-mm-dd or UNRELEASED as release date

2014-05-07 Thread Tomi Ollila
The -mm-dd (actually \d\d\d\d-\d\d-\d\d) for a bit more restrictive (and self-documentative) than the \w\w\w\w-... that used to be there and UNRELEASED so that developers can test the latest NEWS converted to mdwn format before submitting NEWS patches. --- devel/news2wiki.pl | 3 +-- 1 file

folder and path completely broken in HEAD?

2014-05-07 Thread Mark Walters
> The trick here is that it's easy to miss people who are happy with > current functionality. Adding functionality to address newly-identified > use cases makes a lot of sense. But removing functionality runs the risk > of only discovering that people were relying on it after the fact, > (Which

[Patch v3 0/3] emacs: show: redesign unread/read logic

2014-05-07 Thread Mark Walters
On Wed, 07 May 2014, David Edmondson wrote: > On Tue, Mar 25 2014, Mark Walters wrote: >> The third patch adds my attempt at a plausible logic. I find it works >> very well: it usually does both what I expect and what I want. > > Whilst I think that the patch is well done, I don't like the

[PATCH v2] emacs: Add support for saved search accelerators

2014-05-07 Thread David Edmondson
Extended the saved search definition to allow the inclusion of an accelerator key for the search. Bind 'j' in the common mode map as a leader for such accelerator keys. --- emacs/notmuch-hello.el | 5 - emacs/notmuch-lib.el | 46 ++ 2 files

[PATCH v2] emacs: Add support for saved search accelerator keys

2014-05-07 Thread David Edmondson
emacs: Add support for saved search accelerator keys This arose out a conversation in #notmuch and Mark's patch to extend the saved search custom specification based on requirements for an external package (Austin's notmuch-go.el). v2: - Comments from Mark Walters: - Use

[PATCH] emacs: hello: allow arbitrary lisp for generating the count.

2014-05-07 Thread David Edmondson
-count (plist-get elem :count))) > (widget-insert (format "%8s " > -(notmuch-hello-nice-number msg-count))) > + (if (stringp msg-count) > +msg-count > + (notmuch-hello-nice-number > msg-count > (widget-create 'push-button > :notify #'notmuch-hello-widget-search > :notmuch-search-terms query > -- > 1.7.10.4 > > ___ > notmuch mailing list > notmuch at notmuchmail.org > http://notmuchmail.org/mailman/listinfo/notmuch -- next part -- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 310 bytes Desc: not available URL: <http://notmuchmail.org/pipermail/notmuch/attachments/20140507/bc1cd05b/attachment.pgp>

[PATCH v2 00/10] add insert --must-index option

2014-05-07 Thread Tomi Ollila
On Wed, Apr 16 2014, Peter Wang wrote: > Follow up to id:1374365254-13227-1-git-send-email-novalazy at gmail.com > The main changes are to take into account failures during > tagging and flushing of the database. > > I took Jani's patch id:1390152046-6509-1-git-send-email-jani at nikula.org >

[PATCH v2 5/5] T360-symbol-hiding: Use nm instead of objdump.

2014-05-07 Thread Charles Celerier
The output of `objdump -t` depends on the format of the object files which are different across platforms (e.g. Mac OS X). Since we really just want to filter the symbols in the object file, nm is a more appropriate tool since it only lists symbols from object files (nm(1)) and has a consistent

[PATCH v2 4/5] T360-symbol-hiding: Added code to support testing on Mac OS X.

2014-05-07 Thread Charles Celerier
The Mac OS X platform uses *.dylib object files instead of *.so object files for linking. Adding the path to notmuch.dylib to the end of DYLD_FALLBACK_LIBRARY_PATH has a similar effect to adding the path to notmuch.so to LD_LIBRARY_PATH on most Linux-based platforms (see dyld(1)). Signed-off-by:

pkg-config zlib check in 3c13bc

2014-05-07 Thread Tomi Ollila
On Tue, May 06 2014, X?c? wrote: > Dear notmuch, > > Although notmuch was configuring fine on FreeBSD before 3c13bc, the pkg-config > check introduced for zlib does not work. Indeed, zlib is part of the > base system, and always assumed to be present. > > Proposed patch puts platform test before

GMAIL tag sync arriving in next branch in Offlineimap

2014-05-07 Thread Rainer M Krug
Recently, gmail tag sync was discussed here, and it seems something is happening in Offlineimap: patches implementing synching of gmail tags to X-Labels have been applied in the next branch and announced on the Offline mailing list. Cheers, Rainer -- Rainer M. Krug, PhD (Conservation Ecology,

Re: Linux-only fdatasync() in 3c13bc

2014-05-07 Thread Kushal Kumaran
Xīcò x...@atelo.org writes: Also, commit 3c13bc introduced a call to fdatasync() which is not available on FreeBSD, and probably not either on MacOS at least. fdatasync is POSIX: http://pubs.opengroup.org/onlinepubs/009695399/functions/fdatasync.html -- regards, kushal pgpIDJi7crZ95.pgp

[PATCH v2] emacs: Add support for saved search accelerator keys

2014-05-07 Thread David Edmondson
emacs: Add support for saved search accelerator keys This arose out a conversation in #notmuch and Mark's patch to extend the saved search custom specification based on requirements for an external package (Austin's notmuch-go.el). v2: - Comments from Mark Walters: - Use

[PATCH v2] emacs: Add support for saved search accelerators

2014-05-07 Thread David Edmondson
Extended the saved search definition to allow the inclusion of an accelerator key for the search. Bind 'j' in the common mode map as a leader for such accelerator keys. --- emacs/notmuch-hello.el | 5 - emacs/notmuch-lib.el | 46 ++ 2 files

Re: Improving spam-tagging keybinding function to act on region in emacs

2014-05-07 Thread Olivier Berger
Hi. Mark Walters markwalters1...@gmail.com writes: Hello As this section was rather outdated I have updated to modern notmuch. (In fact the lisp snippets should work back to at least 0.13) On Tue, 06 May 2014, Olivier Berger olivier.ber...@telecom-sudparis.eu wrote: Hi. I've tried tu

Re: GMAIL tag sync arriving in next branch in Offlineimap

2014-05-07 Thread Jani Nikula
On Wed, 07 May 2014, Rainer M Krug rai...@krugs.de wrote: Recently, gmail tag sync was discussed here, and it seems something is happening in Offlineimap: patches implementing synching of gmail tags to X-Labels have been applied in the next branch and announced on the Offline mailing list.

Re: Linux-only fdatasync() in 3c13bc

2014-05-07 Thread Tomi Ollila
On Wed, May 07 2014, Kushal Kumaran kushal.kumaran+notm...@gmail.com wrote: Xīcò x...@atelo.org writes: Also, commit 3c13bc introduced a call to fdatasync() which is not available on FreeBSD, and probably not either on MacOS at least. fdatasync is POSIX:

Re: Linux-only fdatasync() in 3c13bc

2014-05-07 Thread David Bremner
Tomi Ollila tomi.oll...@iki.fi writes: On Wed, May 07 2014, Kushal Kumaran kushal.kumaran+notm...@gmail.com wrote: Xīcò x...@atelo.org writes: Also, commit 3c13bc introduced a call to fdatasync() which is not available on FreeBSD, and probably not either on MacOS at least. fdatasync is

Log of tagging actions

2014-05-07 Thread Sebastian Fischmeister
Hi, The amazing thing about the notmuch emacs interface is that with just a couple of keystrokes you can quickly manipulate a lot of emails and thus be very efficient. The big disadvantage is that with just a couple of keystrokes you can manipulate a lot of emails and thus quickly completely mess

Re: [Patch v3 0/3] emacs: show: redesign unread/read logic

2014-05-07 Thread David Edmondson
On Tue, Mar 25 2014, Mark Walters wrote: The third patch adds my attempt at a plausible logic. I find it works very well: it usually does both what I expect and what I want. Whilst I think that the patch is well done, I don't like the resulting behaviour. That is a personal preference, of

Re: [PATCH v4 2/3] emacs: `notmuch-show-buttonize-links' only `notmuch-show's a message if it exists

2014-05-07 Thread David Edmondson
[ Trimmed to/cc list. ] On Sun, Jan 22 2012, Pieter Praet wrote: * emacs/notmuch-show.el (notmuch-show-found-target-p): new predicate function that uses notmuch(1) 'count' to see if a query turns up any results. * emacs/notmuch-show.el (notmuch-show-if-found): new function that only shows

[RFC] [PATCH] emacs/notmuch-mua: Generate improved cited text for replies

2014-05-07 Thread David Edmondson
Use the message display code to generate message text to cite in replies. --- This breaks the tests, which know about the details of how the reply buffer looks in emacs. I will fix that of course, if this approach is considered acceptable. The original implementation took a simplistic view of

Re: Linux-only fdatasync() in 3c13bc

2014-05-07 Thread Austin Clements
Quoth David Bremner on May 07 at 10:17 pm: Tomi Ollila tomi.oll...@iki.fi writes: On Wed, May 07 2014, Kushal Kumaran kushal.kumaran+notm...@gmail.com wrote: Xīcò x...@atelo.org writes: Also, commit 3c13bc introduced a call to fdatasync() which is not available on FreeBSD, and

Re: [Patch v3 0/3] emacs: show: redesign unread/read logic

2014-05-07 Thread Mark Walters
On Wed, 07 May 2014, David Edmondson d...@dme.org wrote: On Tue, Mar 25 2014, Mark Walters wrote: The third patch adds my attempt at a plausible logic. I find it works very well: it usually does both what I expect and what I want. Whilst I think that the patch is well done, I don't like the

Re: folder and path completely broken in HEAD?

2014-05-07 Thread Mark Walters
The trick here is that it's easy to miss people who are happy with current functionality. Adding functionality to address newly-identified use cases makes a lot of sense. But removing functionality runs the risk of only discovering that people were relying on it after the fact, (Which seems

[PATCH 1/1] devel: news2wiki to recognize yyyy-mm-dd or UNRELEASED as release date

2014-05-07 Thread Tomi Ollila
The -mm-dd (actually \d\d\d\d-\d\d-\d\d) for a bit more restrictive (and self-documentative) than the \w\w\w\w-... that used to be there and UNRELEASED so that developers can test the latest NEWS converted to mdwn format before submitting NEWS patches. --- devel/news2wiki.pl | 3 +-- 1 file

Github?

2014-05-07 Thread Wael Nasreddine
Hello everyone, Thank you so much for creating Notmuch, I am coming from sup and I was looking for a more stable alternative and I think I found what I am looking for :) I was a bit disappointed that the project is not living (or at least mirrored) to Github, it would have made my search much

Github?

2014-05-07 Thread Wael Nasreddine
I forgot to mention that I also enabled Travis-CI for notmuch, you can access it here https://travis-ci.org/notmuch/notmuch, there are 33 failed tests, they are also failing on my own machine. On Wed May 07 2014 at 10:28:06 PM, Wael Nasreddine wael.nasredd...@gmail.com wrote: Hello everyone,