Re: [PATCH] emacs: wash: make word-wrap bound message width
[notmuch-archives.git] / d0 / 461c92fa416857c938a7d53c243f08bf2d7d4c
1 Return-Path: <micah@riseup.net>\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 A7B77431FBF\r
6         for <notmuch@notmuchmail.org>; Fri, 26 Feb 2010 17:32:54 -0800 (PST)\r
7 X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
8 X-Spam-Flag: NO\r
9 X-Spam-Score: -0.887\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-0.887 tagged_above=-999 required=5 tests=[AWL=0.111,\r
12         BAYES_50=0.001, RCVD_IN_DNSWL_LOW=-1, UNPARSEABLE_RELAY=0.001]  autolearn=ham\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 jp1GG5NpE6Su for <notmuch@notmuchmail.org>;\r
16         Fri, 26 Feb 2010 17:32:53 -0800 (PST)\r
17 Received: from mx1.riseup.net (mx1.riseup.net [204.13.164.18])\r
18         by olra.theworths.org (Postfix) with ESMTP id B3F0D431FAE\r
19         for <notmuch@notmuchmail.org>; Fri, 26 Feb 2010 17:32:53 -0800 (PST)\r
20 Received: from [127.0.0.1] (localhost [127.0.0.1])\r
21         (Authenticated sender: micah@mx1.riseup.net)\r
22         with ESMTPSA id 2E68E25F73C\r
23 Received: by lillypad (Postfix, from userid 1000)\r
24         id 3AB422CC0AA; Fri, 26 Feb 2010 20:33:12 -0500 (EST)\r
25 From: micah anderson <micah@riseup.net>\r
26 To: James Vasile <james@hackervisions.org>, notmuch@notmuchmail.org\r
27 In-Reply-To: <87hbp5j9dv.fsf@hackervisions.org>\r
28 References: <87hbp5j9dv.fsf@hackervisions.org>\r
29 Date: Fri, 26 Feb 2010 20:33:08 -0500\r
30 Message-ID: <87wrxzo42z.fsf@lillypad.riseup.net>\r
31 MIME-Version: 1.0\r
32 Content-Type: multipart/signed; boundary="=-=-=";\r
33         micalg=pgp-sha512; protocol="application/pgp-signature"\r
34 X-Virus-Scanned: clamav-milter 0.95.3 at mx1\r
35 X-Virus-Status: Clean\r
36 Subject: Re: [notmuch] Initial tagging\r
37 X-BeenThere: notmuch@notmuchmail.org\r
38 X-Mailman-Version: 2.1.13\r
39 Precedence: list\r
40 List-Id: "Use and development of the notmuch mail system."\r
41         <notmuch.notmuchmail.org>\r
42 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
43         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
44 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
45 List-Post: <mailto:notmuch@notmuchmail.org>\r
46 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
47 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
48         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
49 X-List-Received-Date: Sat, 27 Feb 2010 01:32:54 -0000\r
50 \r
51 --=-=-=\r
52 Content-Transfer-Encoding: quoted-printable\r
53 \r
54 \r
55 Hey james,\r
56 \r
57 i really like your notmuch-retry bits, I've taken that shell script and\r
58 integrated it into my tagging script, thanks! I'm curious if you are\r
59 going to update your patch for notmuch.el ("Calls to notmuch get queued\r
60 and executed asynchronously") to use this, or if you are going to have\r
61 those two continue to be separate ways of retrying?\r
62 \r
63 On Thu, 25 Feb 2010 16:25:16 -0500, James Vasile <james@hackervisions.org> =\r
64 wrote:\r
65 \r
66 > The tagging script uses the inbox tag to identify new mail, tags it\r
67 > according to criteria, then removes the inbox tag from anything it found\r
68 > a match for.  Uncategorized mail keeps the inbox tag so I can inspect it\r
69 > later and make rules for it (or tag it manually).\r
70 \r
71 Why do you tag new mail with tags, rather than construct folder searches\r
72 to create views?=20\r
73 \r
74 For example, rather than adding more and more data to the database every\r
75 time your script runs and does something like the following:\r
76 \r
77 tag_new "+list +notmuch" "to:notmuchmail.org or notmuch"\r
78 \r
79 Why don't you instead create a folder in your .emacs like this:\r
80 \r
81 (setq notmuch-folders '(("inbox" . "tag:inbox")\r
82                         ("unread" . "tag:inbox AND tag:unread")\r
83                         ("notmuch" . "to:notmuchmail.org")))\r
84 \r
85 That way, if you want to read the notmuch mailing list, you would simply\r
86 open that folder, which would present you with the results of that\r
87 search.=20\r
88 \r
89 You could do different things with the tag:unread and tag:inbox flags,\r
90 depending on what you wanted to accomplish. Namely, you may wish to only\r
91 have a view of all the unread notmuch mailing list messages, in which\r
92 case you would make that query "tag:unread AND to:notmuchmail.org".\r
93 \r
94 I'm just curious about the rationale for doing it one way, over the\r
95 other.=20\r
96 \r
97 micah\r
98 \r
99 --=-=-=\r
100 Content-Type: application/pgp-signature\r
101 \r
102 -----BEGIN PGP SIGNATURE-----\r
103 Version: GnuPG v1.4.10 (GNU/Linux)\r
104 \r
105 iQIcBAEBCgAGBQJLiHZUAAoJEIy/mjIoYaeQKRgP/24tMBrTYTAoME9DGNT3ybPG\r
106 5Yx+NvIIDeS4ezl2i328w28VaM7cHbv4oyfy+G4RYHbgl01SgPPwLHeaDt/P/KwA\r
107 UFg86mIc6RBHBLGRKAYGrNOqSqvszfjP0YO5IyL3HllrY20xEzqBUnRisAL+zefw\r
108 fOTx7qwQKo9wj6mMyTFn+L05ejsS2sl5hbaaMDqIpzR5Dd+7VqHsAsdNhvKZy7Qy\r
109 NmeUaTkX8AEx44ExOeJeaBja6tm3FlEFF5BiD4zSSvloEVH1MnfrsDFT5W1p/2hw\r
110 6us/R85S70U7dv2coapHjHtWfoFC44XSklXVASieQ+dr6XXjs9Gomdu71AwSE0AC\r
111 a8MZQc4qJjP7HRnrm4tHBL9DDgZ8PdyP3mqHEaGRqa1x1BPWNoaop0T/CNerwGPd\r
112 7427SddkxXzcuNa6Q1nvkBfgHsjSDbiFnt7K3myaV1qWG/cvr+sH4yGyFItIT1Dh\r
113 i7MW7h7lQft97Ly2SWHuoCHbiruB+ckPfVjEsrtuCOAtYvEs8ghApPHL8VNcydhf\r
114 HF9FyZGf5fS+VYqGWUVw2iIuxPuTYtZRfDl6WKRXSA+SSCEsOUeDun/Erh79++yI\r
115 KUUOxbJvFGIcpHeOFgKvlGJO/0BPvxJzmQS94DL7IZngQrFb/7+nETKWYK++bYk+\r
116 y05rzu75v8vWHbY9N08Y\r
117 =ReME\r
118 -----END PGP SIGNATURE-----\r
119 --=-=-=--\r