2016-04-13 09:58:47 +02:00
|
|
|
;;; notmuch-message.el --- message-mode functions specific to notmuch
|
2010-04-27 17:53:30 +02:00
|
|
|
;;
|
|
|
|
;; Copyright © 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
|
2016-06-02 18:26:14 +02:00
|
|
|
;; along with Notmuch. If not, see <https://www.gnu.org/licenses/>.
|
2010-04-27 17:53:30 +02:00
|
|
|
;;
|
|
|
|
;; Authors: Jesse Rosenthal <jrosenthal@jhu.edu>
|
|
|
|
|
2016-04-13 09:58:47 +02:00
|
|
|
;;; Code:
|
|
|
|
|
2010-04-27 17:53:30 +02:00
|
|
|
(require 'message)
|
2012-04-14 20:52:50 +02:00
|
|
|
(require 'notmuch-tag)
|
2010-04-27 17:53:30 +02:00
|
|
|
|
2012-09-06 17:32:39 +02:00
|
|
|
(defcustom notmuch-message-replied-tags '("+replied")
|
|
|
|
"List of tag changes to apply to a message when it has been replied to.
|
|
|
|
|
|
|
|
Tags starting with \"+\" (or not starting with either \"+\" or
|
|
|
|
\"-\") in the list will be added, and tags starting with \"-\"
|
|
|
|
will be removed from the message being replied to.
|
2010-04-27 17:53:30 +02:00
|
|
|
|
|
|
|
For example, if you wanted to add a \"replied\" tag and remove
|
2012-09-06 17:32:39 +02:00
|
|
|
the \"inbox\" and \"todo\" tags, you would set:
|
2019-04-12 14:01:11 +02:00
|
|
|
(\"+replied\" \"-inbox\" \"-todo\")"
|
2012-09-06 17:32:38 +02:00
|
|
|
:type '(repeat string)
|
2012-01-16 11:38:33 +01:00
|
|
|
:group 'notmuch-send)
|
2010-04-27 17:53:30 +02:00
|
|
|
|
2019-04-12 14:01:12 +02:00
|
|
|
(defcustom notmuch-message-forwarded-tags '("+forwarded")
|
|
|
|
"List of tag changes to apply to a message when it has been forwarded.
|
|
|
|
|
|
|
|
Tags starting with \"+\" (or not starting with either \"+\" or
|
|
|
|
\"-\") in the list will be added, and tags starting with \"-\"
|
|
|
|
will be removed from the message being forwarded.
|
|
|
|
|
|
|
|
For example, if you wanted to add a \"forwarded\" tag and remove
|
|
|
|
the \"inbox\" tag, you would set:
|
|
|
|
(\"+forwarded\" \"-inbox\")"
|
|
|
|
:type '(repeat string)
|
|
|
|
:group 'notmuch-send)
|
|
|
|
|
2019-04-12 14:01:11 +02:00
|
|
|
(defconst notmuch-message-queued-tag-changes nil
|
|
|
|
"List of messages and corresponding tag-changes to be applied when sending a message.
|
2010-04-27 17:53:30 +02:00
|
|
|
|
2019-04-12 14:01:11 +02:00
|
|
|
This variable is overridden by buffer-local versions in message
|
|
|
|
buffers where tag changes should be triggered when sending off
|
|
|
|
the message. Each item in this list is a list of strings, where
|
|
|
|
the first is a notmuch query and the rest are the tag changes to
|
|
|
|
be applied to the matching messages.")
|
|
|
|
|
|
|
|
(defun notmuch-message-apply-queued-tag-changes ()
|
|
|
|
;; Apply the tag changes queued in the buffer-local variable notmuch-message-queued-tag-changes.
|
|
|
|
(dolist (query-and-tags notmuch-message-queued-tag-changes)
|
|
|
|
(notmuch-tag (car query-and-tags)
|
|
|
|
(cdr query-and-tags))))
|
|
|
|
|
|
|
|
(add-hook 'message-send-hook 'notmuch-message-apply-queued-tag-changes)
|
2010-04-27 17:53:30 +02:00
|
|
|
|
|
|
|
(provide 'notmuch-message)
|
2016-04-13 09:58:47 +02:00
|
|
|
|
|
|
|
;;; notmuch-message.el ends here
|