Re: [PATCH 1/3] build: don't add sub Makefiles to the global deps
[notmuch-archives.git] / bc / 2b0f9be0449913ec0104082e949fff4b449cf3
1 Return-Path: <prvs=131304623=jrosenthal@jhu.edu>\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 44C1A429E28\r
6         for <notmuch@notmuchmail.org>; Mon,  6 Jun 2011 10:20:04 -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: -2.3\r
10 X-Spam-Level: \r
11 X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5\r
12         tests=[RCVD_IN_DNSWL_MED=-2.3] 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 xWR9z06krArp for <notmuch@notmuchmail.org>;\r
16         Mon,  6 Jun 2011 10:20:02 -0700 (PDT)\r
17 Received: from ipex4.johnshopkins.edu (ipex4.johnshopkins.edu\r
18         [128.220.161.141]) (using TLSv1 with cipher RC4-SHA (128/128 bits))\r
19         (No client certificate requested)\r
20         by olra.theworths.org (Postfix) with ESMTPS id 11433431FB6\r
21         for <notmuch@notmuchmail.org>; Mon,  6 Jun 2011 10:20:02 -0700 (PDT)\r
22 X-IronPort-AV: E=Sophos;i="4.65,327,1304308800"; d="scan'208";a="75620948"\r
23 Received: from dyn-209-2-216-143.dyn.columbia.edu (HELO gogo.home)\r
24         ([209.2.216.143])\r
25         by ipex4.johnshopkins.edu with ESMTP/TLS/AES256-SHA;\r
26         06 Jun 2011 13:20:01 -0400\r
27 Received: from jkr by gogo.home with local (Exim 4.76)\r
28         (envelope-from <jrosenthal@jhu.edu>)\r
29         id 1QTdT6-000757-UW; Mon, 06 Jun 2011 13:20:00 -0400\r
30 From: Jesse Rosenthal <jrosenthal@jhu.edu>\r
31 To: Jameson Graef Rollins <jrollins@finestructure.net>,\r
32         Carl Worth <cworth@cworth.org>, Notmuch Mail <notmuch@notmuchmail.org>\r
33 Subject: Re: tag sharing [was: Re: release-candidate/0.6 redux]\r
34 In-Reply-To: <8762oigc0y.fsf@servo.factory.finestructure.net>\r
35 References: <1306619520-25730-1-git-send-email-jrollins@finestructure.net>\r
36         <87hb8eebdi.fsf@servo.factory.finestructure.net>\r
37         <87pqmyn224.fsf@servo.factory.finestructure.net>\r
38         <87zklyjshd.fsf@yoom.home.cworth.org>\r
39         <87sjrng5k3.fsf@servo.factory.finestructure.net>\r
40         <87oc2bjgrs.fsf@yoom.home.cworth.org>\r
41         <8762oigc0y.fsf@servo.factory.finestructure.net>\r
42 User-Agent: Notmuch/0.5-192-gecd6549 (http://notmuchmail.org) Emacs/23.3.1\r
43         (i486-pc-linux-gnu)\r
44 Date: Mon, 06 Jun 2011 13:20:00 -0400\r
45 Message-ID: <87boya98sf.fsf@gogo.home>\r
46 MIME-Version: 1.0\r
47 Content-Type: text/plain; charset=us-ascii\r
48 X-BeenThere: notmuch@notmuchmail.org\r
49 X-Mailman-Version: 2.1.13\r
50 Precedence: list\r
51 List-Id: "Use and development of the notmuch mail system."\r
52         <notmuch.notmuchmail.org>\r
53 List-Unsubscribe: <http://notmuchmail.org/mailman/options/notmuch>,\r
54         <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
55 List-Archive: <http://notmuchmail.org/pipermail/notmuch>\r
56 List-Post: <mailto:notmuch@notmuchmail.org>\r
57 List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
58 List-Subscribe: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
59         <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
60 X-List-Received-Date: Mon, 06 Jun 2011 17:20:04 -0000\r
61 \r
62 \r
63 On Mon, 06 Jun 2011 09:28:13 -0700, Jameson Graef Rollins <jrollins@finestructure.net> wrote:\r
64 > I've been thinking about this more and it really seems we need a way to\r
65 > just share tags.  What if we had a way to export all the tags for a set\r
66 > of messages as a notmuch dump file, that could just be piped into\r
67 > notmuch to modify tags?  This would be a great way for lots of people to\r
68 > keep tags synced on a set of messages.\r
69 \r
70 After a conversation with David last year about bug-tracking, I worked\r
71 up a rough python-based prototype of this. It worked in terms of\r
72 namespaces, so Carl could associate the namespace "public" with a list\r
73 of tags he publishes to a http-accessable location. And you could\r
74 associate the namespace "cworth" with those same tags.\r
75 \r
76 He types `whatevercommand push public` and all tags "public.*" go to an\r
77 config-associated URL.\r
78 \r
79 You type `whatevercommand pull cworth` and the tags come down from that\r
80 URL as "cworth.*".\r
81 \r
82 So what he has as "public.to-push" comes down to your notmuch as\r
83 "cworth.to-push".\r
84 \r
85 It's available here:\r
86 \r
87     http://commonmeasure.org/~jkr/git/nm-remote.git\r
88 \r
89 See these emails for more (but note that the repo url has changed to the\r
90 above).\r
91     \r
92     id:"m1k4rkkchy.fsf@watt.gilman.jhu.edu"        \r
93     id:"m1hbmokbxj.fsf@watt.gilman.jhu.edu"\r
94 \r
95 There were some details and inherent ambiguities about conflict\r
96 resolution, and the above emails explain how I dealt with them. \r
97 \r
98 Note also that it uses python's configparser, which will overwrite your\r
99 config -- which means it'll get rid of your comments. So if you use any\r
100 of the config-writing commands, make sure you back up your config first.\r
101 \r
102 Best,\r
103 Jesse\r