Add support for specifying tags during "notmuch new"
authorDavid Edmondson <dme@dme.org>
Fri, 2 May 2014 08:15:50 +0000 (09:15 +0100)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:02:03 +0000 (10:02 -0800)
f4/d450d6b97b437705996a01526faa59ccaf1cf1 [new file with mode: 0644]

diff --git a/f4/d450d6b97b437705996a01526faa59ccaf1cf1 b/f4/d450d6b97b437705996a01526faa59ccaf1cf1
new file mode 100644 (file)
index 0000000..20b46ee
--- /dev/null
@@ -0,0 +1,69 @@
+Return-Path: <dme@hotblack-desiato.hh.sledj.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 olra.theworths.org (Postfix) with ESMTP id 29061431E84\r
+       for <notmuch@notmuchmail.org>; Fri,  2 May 2014 01:23:25 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0.379\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0.379 tagged_above=-999 required=5\r
+       tests=[NO_DNS_FOR_FROM=0.379] autolearn=disabled\r
+Received: from olra.theworths.org ([127.0.0.1])\r
+       by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id Coz6vLx2myv9 for <notmuch@notmuchmail.org>;\r
+       Fri,  2 May 2014 01:23:17 -0700 (PDT)\r
+X-Greylist: delayed 423 seconds by postgrey-1.32 at olra;\r
+       Fri, 02 May 2014 01:23:17 PDT\r
+Received: from disaster-area.hh.sledj.net (disaster-area.hh.sledj.net\r
+       [81.149.164.25])\r
+       (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))\r
+       (No client certificate requested)\r
+       by olra.theworths.org (Postfix) with ESMTPS id 8B1E8431FBD\r
+       for <notmuch@notmuchmail.org>; Fri,  2 May 2014 01:23:17 -0700 (PDT)\r
+Received: from hotblack-desiato.hh.sledj.net (hotblack-desiato.hh.sledj.net\r
+       [172.16.100.105])\r
+       by disaster-area.hh.sledj.net (Postfix) with ESMTPSA id F06CA501481\r
+       for <notmuch@notmuchmail.org>; Fri,  2 May 2014 09:16:11 +0100 (BST)\r
+Received: by hotblack-desiato.hh.sledj.net (Postfix, from userid 30000)\r
+       id B8D9C103452; Fri,  2 May 2014 09:16:10 +0100 (BST)\r
+From: David Edmondson <dme@dme.org>\r
+To: notmuch@notmuchmail.org\r
+Subject: Add support for specifying tags during "notmuch new"\r
+Date: Fri,  2 May 2014 09:15:50 +0100\r
+Message-Id: <1399018555-1994-1-git-send-email-dme@dme.org>\r
+X-Mailer: git-send-email 1.9.2\r
+X-BeenThere: notmuch@notmuchmail.org\r
+X-Mailman-Version: 2.1.13\r
+Precedence: list\r
+List-Id: "Use and development of the notmuch mail system."\r
+       <notmuch.notmuchmail.org>\r
+List-Unsubscribe: <http://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: <http://notmuchmail.org/mailman/listinfo/notmuch>,\r
+       <mailto:notmuch-request@notmuchmail.org?subject=subscribe>\r
+X-List-Received-Date: Fri, 02 May 2014 08:23:25 -0000\r
+\r
+This patch set allows a user to specify a list of tags to be\r
+added/removed to messages discovered during "notmuch new".\r
+\r
+Two use-cases are envisaged:\r
+    1) A chunk of messages was just dumped into the configured\r
+       directory by hand, and the user doesn't want the 'inbox' tag\r
+       applied to them. Run 'notmuch new -inbox'.\r
+    2) A periodic mail processing script wants to add new messages to\r
+       the database, then process those newly added messages to add\r
+       convenience tags, etc. without worrying about the user or other\r
+       instances of the script manipulating tags at the same time. Use\r
+       this approach:\r
+         KEY=$RANDOM\r
+        notmuch new +$KEY\r
+        notmuch tag +notmuch tag:$KEY and to:notmuch@notmuchmail.org\r
+        notmuch tag +gnus tag:$KEY and to:ding@gnus.org\r
+        ...\r
+        notmuch tag -$KEY tag:$KEY\r
+\r