]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-message.el
version: bump to 0.15.1
[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   "List of tag changes to apply to a message when it has been replied to.
28
29 Tags starting with \"+\" (or not starting with either \"+\" or
30 \"-\") in the list will be added, and tags starting with \"-\"
31 will be removed from the message being replied to.
32
33 For example, if you wanted to add a \"replied\" tag and remove
34 the \"inbox\" and \"todo\" tags, you would set:
35     (\"+replied\" \"-inbox\" \"-todo\"\)"
36   :type '(repeat string)
37   :group 'notmuch-send)
38
39 (defun notmuch-message-mark-replied ()
40   ;; get the in-reply-to header and parse it for the message id.
41   (let ((rep (mail-header-parse-addresses (message-field-value "In-Reply-To"))))
42     (when (and notmuch-message-replied-tags rep)
43       (funcall 'notmuch-tag (notmuch-id-to-query (car (car rep)))
44                (notmuch-tag-change-list notmuch-message-replied-tags)))))
45
46 (add-hook 'message-send-hook 'notmuch-message-mark-replied)
47
48 (provide 'notmuch-message)