RFC: message property API
authorDavid Bremner <david@tethera.net>
Sun, 22 May 2016 14:28:57 +0000 (11:28 +2100)
committerW. Trevor King <wking@tremily.us>
Sat, 20 Aug 2016 23:21:52 +0000 (16:21 -0700)
ec/f0586bd71be97546b72a0aa5836492782006be [new file with mode: 0644]

diff --git a/ec/f0586bd71be97546b72a0aa5836492782006be b/ec/f0586bd71be97546b72a0aa5836492782006be
new file mode 100644 (file)
index 0000000..3098763
--- /dev/null
@@ -0,0 +1,76 @@
+Return-Path: <bremner@tethera.net>\r
+X-Original-To: notmuch@notmuchmail.org\r
+Delivered-To: notmuch@notmuchmail.org\r
+Received: from localhost (localhost [127.0.0.1])\r
+ by arlo.cworth.org (Postfix) with ESMTP id 5FFB06DE02CC\r
+ for <notmuch@notmuchmail.org>; Sun, 22 May 2016 07:29:19 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at cworth.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: -0.012\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=-0.012 tagged_above=-999 required=5\r
+ tests=[AWL=-0.001, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01]\r
+ autolearn=disabled\r
+Received: from arlo.cworth.org ([127.0.0.1])\r
+ by localhost (arlo.cworth.org [127.0.0.1]) (amavisd-new, port 10024)\r
+ with ESMTP id mkrq_l7gw-HA for <notmuch@notmuchmail.org>;\r
+ Sun, 22 May 2016 07:29:11 -0700 (PDT)\r
+Received: from fethera.tethera.net (fethera.tethera.net [198.245.60.197])\r
+ by arlo.cworth.org (Postfix) with ESMTPS id 65DF86DE0231\r
+ for <notmuch@notmuchmail.org>; Sun, 22 May 2016 07:29:10 -0700 (PDT)\r
+Received: from remotemail by fethera.tethera.net with local (Exim 4.84)\r
+ (envelope-from <bremner@tethera.net>) id 1b4UNH-00050Z-MC\r
+ for notmuch@notmuchmail.org; Sun, 22 May 2016 10:28:59 -0400\r
+Received: (nullmailer pid 5511 invoked by uid 1000);\r
+ Sun, 22 May 2016 14:29:06 -0000\r
+From: David Bremner <david@tethera.net>\r
+To: notmuch@notmuchmail.org\r
+Subject: RFC: message property API\r
+Date: Sun, 22 May 2016 11:28:57 -0300\r
+Message-Id: <1463927339-5441-1-git-send-email-david@tethera.net>\r
+X-Mailer: git-send-email 2.8.1\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.20\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+ <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <https://notmuchmail.org/mailman/options/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=unsubscribe>\r
+List-Archive: <http://notmuchmail.org/pipermail/notmuch/>\r
+List-Post: <mailto:notmuch@notmuchmail.org>\r
+List-Help: <mailto:notmuch-request@notmuchmail.org?subject=help>\r
+List-Subscribe: <https://notmuchmail.org/mailman/listinfo/notmuch>,\r
+ <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Sun, 22 May 2016 14:29:19 -0000\r
+\r
+People (or maybe just dkg) have proposed various bits of user metadata\r
+to attach to messages\r
+\r
+   - references to be added or blacklisted\r
+   - encryption related key material\r
+\r
+Since such metadata would be not-reproducible from the message files,\r
+it would be "precious" and need a backup/restore path.\r
+\r
+This is a prototype of a library API to support that.\r
+    \r
+Some things to note:\r
+    \r
+    - This is tested on top of my libconfig [1] series, but I think there is no\r
+      logical dependency\r
+    \r
+    - there are no docs, see the tests\r
+    \r
+    - this is just the low level api; it would need to be extended in a\r
+      similar way to the libconfig series to dump and restore metadata.\r
+      This might require modifying/extending the API to dump all properties\r
+      for a message. That should be a relatively small change.\r
+    \r
+    - it also be useful to be able delete all (key,value) pairs with a given\r
+      key.\r
+    \r
+    - this should really go through the existing caching mechanism used by\r
+      e.g. tags, or at least not invalidate that cache.\r
+    \r
+[1] id:1463135893-7471-6-git-send-email-david@tethera.net\r
+\r