Improving spam-tagging keybinding function to act on region in emacs
authorOlivier Berger <olivier.berger@telecom-sudparis.eu>
Tue, 6 May 2014 12:17:00 +0000 (14:17 +0200)
committerW. Trevor King <wking@tremily.us>
Fri, 7 Nov 2014 18:02:13 +0000 (10:02 -0800)
3d/5ed7afdeb9e9d31dab33adc8ecdc42f10600f2 [new file with mode: 0644]

diff --git a/3d/5ed7afdeb9e9d31dab33adc8ecdc42f10600f2 b/3d/5ed7afdeb9e9d31dab33adc8ecdc42f10600f2
new file mode 100644 (file)
index 0000000..8071acb
--- /dev/null
@@ -0,0 +1,89 @@
+Return-Path: <olivier.berger@telecom-sudparis.eu>\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 1C0E8431FDF\r
+       for <notmuch@notmuchmail.org>; Tue,  6 May 2014 05:23:01 -0700 (PDT)\r
+X-Virus-Scanned: Debian amavisd-new at olra.theworths.org\r
+X-Spam-Flag: NO\r
+X-Spam-Score: 0\r
+X-Spam-Level: \r
+X-Spam-Status: No, score=0 tagged_above=-999 required=5 tests=[none]\r
+       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 2Q5nap38Cf4x for <notmuch@notmuchmail.org>;\r
+       Tue,  6 May 2014 05:22:53 -0700 (PDT)\r
+X-Greylist: delayed 343 seconds by postgrey-1.32 at olra;\r
+       Tue, 06 May 2014 05:22:53 PDT\r
+Received: from zproxy120.enst.fr (zproxy120.enst.fr [137.194.52.34])\r
+       by olra.theworths.org (Postfix) with ESMTP id 76381431FD6\r
+       for <notmuch@notmuchmail.org>; Tue,  6 May 2014 05:22:53 -0700 (PDT)\r
+Received: from localhost (localhost [127.0.0.1])\r
+       by zproxy120.enst.fr (Postfix) with ESMTP id 8ABAC112F3C\r
+       for <notmuch@notmuchmail.org>; Tue,  6 May 2014 14:17:06 +0200 (CEST)\r
+X-Virus-Scanned: amavisd-new at zproxy120.enst.fr\r
+Received: from zproxy120.enst.fr ([127.0.0.1])\r
+       by localhost (zproxy120.enst.fr [127.0.0.1]) (amavisd-new, port 10024)\r
+       with ESMTP id vqgvqbRybU17 for <notmuch@notmuchmail.org>;\r
+       Tue,  6 May 2014 14:17:02 +0200 (CEST)\r
+Received: from localhost (bauxite.int-evry.fr [157.159.110.64])\r
+       by zproxy120.enst.fr (Postfix) with ESMTPSA id 6C768112F2D\r
+       for <notmuch@notmuchmail.org>; Tue,  6 May 2014 14:17:02 +0200 (CEST)\r
+From: Olivier Berger <olivier.berger@telecom-sudparis.eu>\r
+To: notmuch@notmuchmail.org\r
+Subject: Improving spam-tagging keybinding function to act on region in emacs\r
+User-Agent: Notmuch/0.17 (http://notmuchmail.org) Emacs/24.3.1\r
+       (x86_64-pc-linux-gnu)\r
+Date: Tue, 06 May 2014 14:17:00 +0200\r
+Message-ID: <87oazb9k5f.fsf@inf-8660.int-evry.fr>\r
+MIME-Version: 1.0\r
+Content-Type: text/plain\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: Tue, 06 May 2014 12:23:01 -0000\r
+\r
+Hi.\r
+\r
+I've tried tu use the tips indicated at\r
+http://notmuchmail.org/emacstips/#index8h2 so as to add a keybinding to\r
+tag spam messages, and wonder if there's a possibility to make it apply\r
+on selected regions, like what notmuch-search-archive-thread does.\r
+\r
+I can achieve the same result using a macro to iterate over lines, but a\r
+single key press to tag results of a search filter would be quite\r
+convienent.\r
+\r
+And... at the moment, it seems to me that with the current suggested\r
+lambdas, if one presses 'S' after selecting a whole region results in\r
+tagging all sorts of messages (all ?) with the spam tag ! :-/\r
+\r
+\r
+Btw, I think that the current examples could be improved by adding a (next-line)\r
+at the end, like :\r
+(define-key notmuch-search-mode-map "S"\r
+        (lambda ()\r
+          "mark messages in thread as spam"\r
+          (interactive)\r
+          (notmuch-search-tag '("+spam" "-inbox"))\r
+          (next-line)))\r
+\r
+Thanks in advance.\r
+\r
+Best regards,\r
+-- \r
+Olivier BERGER \r
+http://www-public.telecom-sudparis.eu/~berger_o/ - OpenPGP-Id: 2048R/5819D7E8\r
+Ingenieur Recherche - Dept INF\r
+Institut Mines-Telecom, Telecom SudParis, Evry (France)\r
+\r