Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id 320304196F2 for ; Tue, 27 Apr 2010 08:53:35 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -4.2 X-Spam-Level: X-Spam-Status: No, score=-4.2 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, RCVD_IN_DNSWL_MED=-2.3] autolearn=ham Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vgAxC43zLduK for ; Tue, 27 Apr 2010 08:53:34 -0700 (PDT) Received: from ipex3.johnshopkins.edu (ipex3.johnshopkins.edu [128.220.161.140]) by olra.theworths.org (Postfix) with ESMTP id D1CC6431FC1 for ; Tue, 27 Apr 2010 08:53:33 -0700 (PDT) X-IronPort-AV: E=Sophos;i="4.52,280,1270440000"; d="scan'208";a="380272985" Received: from c-69-255-36-229.hsd1.md.comcast.net (HELO lucky) ([69.255.36.229]) by ipex3.johnshopkins.edu with ESMTP/TLS/AES256-SHA; 27 Apr 2010 11:53:32 -0400 Received: from jkr by lucky with local (Exim 4.69) (envelope-from ) id 1O6n6I-0002Kn-J3; Tue, 27 Apr 2010 11:53:30 -0400 From: Jesse Rosenthal To: Carl Worth , Notmuch developer list Subject: [PATCH-V2 1/2] emacs: Add auto-tagging for replied messages. In-Reply-To: <87fx2gnccg.fsf@yoom.home.cworth.org> References: <87d3xlkpsc.fsf@jhu.edu> <87fx2gnccg.fsf@yoom.home.cworth.org> User-Agent: Notmuch/0.3 (http://notmuchmail.org) Emacs/23.1.1 (i486-pc-linux-gnu) Date: Tue, 27 Apr 2010 11:53:30 -0400 Message-ID: <87vdbcki2t.fsf@jhu.edu> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 27 Apr 2010 15:53:35 -0000 Add `notmuch-message-mark-replied', a function for automatically tagging replied messages with user-defined tags. The tags (which can be either added or removed) can be customized with the customization variable `notmuch-message-replied-tags'. This is a simple list of strings. Any string prefaced with a "-" will be removed; any string prefaced with a "+" (or neither "+" nor "-") will be added. This adds a new file notmuch-message.el, for functions which target message mode (and in the future, notmuch-message mode). Based on some conversation, notmuch-message.el will probably end up subsuming notmuch-mua.el, but until we figure out exactly how we want to do that, they will remain separate files. --- emacs/notmuch-message.el | 52 ++++++++++++++++++++++++++++++++++++++++++= ++++ 1 files changed, 52 insertions(+), 0 deletions(-) create mode 100644 emacs/notmuch-message.el diff --git a/emacs/notmuch-message.el b/emacs/notmuch-message.el new file mode 100644 index 0000000..0cc4608 --- /dev/null +++ b/emacs/notmuch-message.el @@ -0,0 +1,52 @@ +;; notmuch-message.el --- message-mode functions specific to notmuch +;; +;; Copyright =C2=A9 Jesse Rosenthal +;; +;; This file is part of Notmuch. +;; +;; Notmuch is free software: you can redistribute it and/or modify it +;; under the terms of the GNU General Public License as published by +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. +;; +;; Notmuch is distributed in the hope that it will be useful, but +;; WITHOUT ANY WARRANTY; without even the implied warranty of +;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +;; General Public License for more details. +;; +;; You should have received a copy of the GNU General Public License +;; along with Notmuch. If not, see . +;; +;; Authors: Jesse Rosenthal + +(require 'message) +(require 'notmuch-mua) + +(defcustom notmuch-message-replied-tags '("replied") + "Tags to be automatically added to or removed from a message when it is = replied to. +Any tag in the list will be added to a replied message or,=20 +if it is prefaced with a \"-\", removed. + +For example, if you wanted to add a \"replied\" tag and remove=20 +the \"inbox\" and \"todo\", you would set + (\"replied\" \"-inbox\" \"-todo\"\)" + :type 'list + :group 'notmuch) + +(defun notmuch-message-mark-replied () + ;; get the in-reply-to header and parse it for the message id.=20 + (let ((rep (mail-header-parse-addresses (message-field-value "In-Reply-T= o")))) + (when (and notmuch-message-replied-tags rep) + ;; add a "+" to any tag that is doesn't already begin with a "+" + ;; or "-" + (let ((tags (mapcar '(lambda (str) + (if (not (string-match "^[+-]" str)) + (concat "+" str) + str)) + notmuch-message-replied-tags))) + (apply 'notmuch-call-notmuch-process "tag" + (append tags (list (concat "id:" (car (car rep)))) nil)))))) + +(add-hook 'message-send-hook 'notmuch-message-mark-replied) + +(provide 'notmuch-message) \ No newline at end of file --=20 1.6.3.3