]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-message.el
emacs: Fix notmuch-message-mark-replied.
[notmuch] / emacs / notmuch-message.el
1 ;; notmuch-message.el --- message-mode functions specific to notmuch
2 ;;
3 ;; Copyright © Jesse Rosenthal
4 ;;
5 ;; This file is part of Notmuch.
6 ;;
7 ;; Notmuch is free software: you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; Notmuch is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Notmuch.  If not, see <http://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: Jesse Rosenthal <jrosenthal@jhu.edu>
21
22 (require 'message)
23 (require 'notmuch-tag)
24 (require 'notmuch-mua)
25
26 (defcustom notmuch-message-replied-tags '("replied")
27   "Tags to be automatically added to or removed from a message when it is replied to.
28 Any tag in the list will be added to a replied message or,
29 if it is prefaced with a \"-\", removed.
30
31 For example, if you wanted to add a \"replied\" tag and remove
32 the \"inbox\" and \"todo\", you would set
33     (\"replied\" \"-inbox\" \"-todo\"\)"
34   :type 'list
35   :group 'notmuch-send)
36
37 (defun notmuch-message-mark-replied ()
38   ;; get the in-reply-to header and parse it for the message id.
39   (let ((rep (mail-header-parse-addresses (message-field-value "In-Reply-To"))))
40     (when (and notmuch-message-replied-tags rep)
41       ;; add a "+" to any tag that is doesn't already begin with a "+"
42       ;; or "-"
43       (let ((tags (mapcar (lambda (str)
44                             (if (not (string-match "^[+-]" str))
45                                 (concat "+" str)
46                               str))
47                           notmuch-message-replied-tags)))
48         (funcall 'notmuch-tag (notmuch-id-to-query (car (car rep))) tags)))))
49
50 (add-hook 'message-send-hook 'notmuch-message-mark-replied)
51
52 (provide 'notmuch-message)