Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / 11 / f719e50ac2c55113eabb5d6185ef86035e5f41
1 Return-Path: <pieter@praet.org>\r
2 X-Original-To: notmuch@notmuchmail.org\r
3 Delivered-To: notmuch@notmuchmail.org\r
4 Received: from localhost (localhost [127.0.0.1])\r
5         by olra.theworths.org (Postfix) with ESMTP id D610C431FD0\r
6         for <notmuch@notmuchmail.org>; Sat, 16 Jul 2011 07:26:11 -0700 (PDT)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.7\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.7 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_LOW=-0.7] autolearn=disabled\r
13 Received: from olra.theworths.org ([127.0.0.1])\r
14         by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
15         with ESMTP id FYDcNaR++LPL for <notmuch@notmuchmail.org>;\r
16         Sat, 16 Jul 2011 07:26:11 -0700 (PDT)\r
17 Received: from mail-ww0-f45.google.com (mail-ww0-f45.google.com\r
18  [74.125.82.45])        (using TLSv1 with cipher RC4-SHA (128/128 bits))        (No client\r
19  certificate requested) by olra.theworths.org (Postfix) with ESMTPS id\r
20  30146431FB6    for <notmuch@notmuchmail.org>; Sat, 16 Jul 2011 07:26:11 -0700\r
21  (PDT)\r
22 Received: by wwj40 with SMTP id 40so1655423wwj.2\r
23         for <notmuch@notmuchmail.org>; Sat, 16 Jul 2011 07:26:09 -0700 (PDT)\r
24 Received: by 10.216.231.165 with SMTP id l37mr3766671weq.78.1310826367779;\r
25         Sat, 16 Jul 2011 07:26:07 -0700 (PDT)\r
26 Received: from localhost (130.40-242-81.adsl-dyn.isp.belgacom.be\r
27         [81.242.40.130])\r
28         by mx.google.com with ESMTPS id f1sm1295347wed.14.2011.07.16.07.26.06\r
29         (version=TLSv1/SSLv3 cipher=OTHER);\r
30         Sat, 16 Jul 2011 07:26:06 -0700 (PDT)\r
31 From: Pieter Praet <pieter@praet.org>\r
32 To: Jason Woofenden <jason@jasonwoof.com>,\r
33         Notmuch Mail <notmuch@notmuchmail.org>\r
34 Subject: Re: bug? notmuch earch doesn't search threads\r
35 In-Reply-To: <20110716123752.GF27859@compy.jasonwoof.org>\r
36 References: <20110716123752.GF27859@compy.jasonwoof.org>\r
37 User-Agent: Notmuch/0.6-60-ga0910f1 (http://notmuchmail.org) Emacs/23.1.50.1\r
38         (x86_64-pc-linux-gnu)\r
39 Date: Sat, 16 Jul 2011 16:26:04 +0200\r
40 Message-ID: <87vcv2714z.fsf@praet.org>\r
41 MIME-Version: 1.0\r
42 Content-Type: text/plain; charset=us-ascii\r
43 X-BeenThere: notmuch@notmuchmail.org\r
44 X-Mailman-Version: 2.1.13\r
45 Precedence: list\r
46 List-Id: "Use and development of the notmuch mail system."\r
47         <notmuch.notmuchmail.org>\r
48 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
49         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
50 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
51 List-Post: <mailto:notmuch@notmuchmail.org>\r
52 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
53 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
55 X-List-Received-Date: Sat, 16 Jul 2011 14:26:12 -0000\r
56 \r
57 On Sat, 16 Jul 2011 08:37:52 -0400, Jason Woofenden <jason@jasonwoof.com> wrote:\r
58 > I added tag:me to all messages from me.\r
59\r
60 > Then I added this to my index page:\r
61\r
62 > tag:notmuch and tag:unread and tag:me\r
63\r
64 > So my attention could be drawn to threads I'd participated in,\r
65 > which had new messages. (This list has enough traffic that I won't\r
66 > always keep up).\r
67\r
68 > It didn't work though. I assume because no single message has all\r
69 > those tags. (The ones with tag:me lack tag:unread and maybe\r
70 > tag:notmuch.)\r
71\r
72 > If this is not a bug, and you want it to only find messages that\r
73 > match, and not threads that match, then I make this feature\r
74 > request:\r
75\r
76 > I want a way to do the above: to search for threads that have the\r
77 > tags I'm looking for (but not necessarily all in the same message\r
78 > within the thread.)\r
79 \r
80 That is indeed expected behaviour.\r
81 \r
82 Filters can help you out though. Bind this to a key:\r
83 \r
84 #+BEGIN_SRC emacs-lisp\r
85   (lambda()\r
86     (notmuch-search "tag:notmuch AND tag:unread")\r
87     (notmuch-search-filter "tag:me"))\r
88 #+END_SRC\r
89 \r
90 > The vim ui is exclusively thread-based, and the notmuch manpage\r
91 > says it's thread-based... I want thread-based searching! :)\r
92\r
93 > Thanks,    - Jason\r
94\r
95 > P.S. I submitted (my first) 6 patches to this list on Monday, and\r
96 > have not gotten a reply or seen them merged. Is there something\r
97 > more I should do, or should I just be patient?\r
98 \r
99 The Notmuch project is in the unique position of being the product of\r
100 Carl's (legimitate) dislike of email (see his talk @ LCA2011 [1]), so\r
101 it's safe to say patches may take some time to pass the gatekeeper.\r
102 Don't worry, your patience will be rewarded.\r
103 \r
104 > _______________________________________________\r
105 > notmuch mailing list\r
106 > notmuch@notmuchmail.org\r
107 > http://notmuchmail.org/mailman/listinfo/notmuch\r
108 \r
109 \r
110 Peace\r
111 \r
112 -- \r
113 Pieter\r
114 \r
115 [1] http://blip.tv/linuxconfau/notmuch-what-email-should-be-4745130\r