1 ;; notmuch-show.el --- displaying notmuch forests.
3 ;; Copyright © Carl Worth
4 ;; Copyright © David Edmondson
6 ;; This file is part of Notmuch.
8 ;; Notmuch is free software: you can redistribute it and/or modify it
9 ;; under the terms of the GNU General Public License as published by
10 ;; the Free Software Foundation, either version 3 of the License, or
11 ;; (at your option) any later version.
13 ;; Notmuch is distributed in the hope that it will be useful, but
14 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
15 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 ;; General Public License for more details.
18 ;; You should have received a copy of the GNU General Public License
19 ;; along with Notmuch. If not, see <http://www.gnu.org/licenses/>.
21 ;; Authors: Carl Worth <cworth@cworth.org>
22 ;; David Edmondson <dme@dme.org>
24 (eval-when-compile (require 'cl))
32 (require 'notmuch-lib)
33 (require 'notmuch-query)
34 (require 'notmuch-wash)
35 (require 'notmuch-mua)
36 (require 'notmuch-crypto)
38 (declare-function notmuch-call-notmuch-process "notmuch" (&rest args))
39 (declare-function notmuch-fontify-headers "notmuch" nil)
40 (declare-function notmuch-select-tag-with-completion "notmuch" (prompt &rest search-terms))
41 (declare-function notmuch-search-show-thread "notmuch" nil)
43 (defcustom notmuch-message-headers '("Subject" "To" "Cc" "Date")
44 "Headers that should be shown in a message, in this order.
46 For an open message, all of these headers will be made visible
47 according to `notmuch-message-headers-visible' or can be toggled
48 with `notmuch-show-toggle-headers'. For a closed message, only
49 the first header in the list will be visible."
51 :type '(repeat string))
53 (defcustom notmuch-message-headers-visible t
54 "Should the headers be visible by default?
56 If this value is non-nil, then all of the headers defined in
57 `notmuch-message-headers' will be visible by default in the display
58 of each message. Otherwise, these headers will be hidden and
59 `notmuch-show-toggle-headers' can be used to make the visible for
64 (defcustom notmuch-show-relative-dates t
65 "Display relative dates in the message summary line."
69 (defvar notmuch-show-markup-headers-hook '(notmuch-show-colour-headers)
70 "A list of functions called to decorate the headers listed in
71 `notmuch-message-headers'.")
73 (defcustom notmuch-show-hook nil
74 "Functions called after populating a `notmuch-show' buffer."
78 (defcustom notmuch-show-insert-text/plain-hook '(notmuch-wash-wrap-long-lines
79 notmuch-wash-tidy-citations
80 notmuch-wash-elide-blank-lines
81 notmuch-wash-excerpt-citations)
82 "Functions used to improve the display of text/plain parts."
85 :options '(notmuch-wash-convert-inline-patch-to-part
86 notmuch-wash-wrap-long-lines
87 notmuch-wash-tidy-citations
88 notmuch-wash-elide-blank-lines
89 notmuch-wash-excerpt-citations))
91 ;; Mostly useful for debugging.
92 (defcustom notmuch-show-all-multipart/alternative-parts t
93 "Should all parts of multipart/alternative parts be shown?"
97 (defcustom notmuch-show-indent-messages-width 1
98 "Width of message indentation in threads.
100 Messages are shown indented according to their depth in a thread.
101 This variable determines the width of this indentation measured
102 in number of blanks. Defaults to `1', choose `0' to disable
107 (defcustom notmuch-show-indent-multipart nil
108 "Should the sub-parts of a multipart/* part be indented?"
109 ;; dme: Not sure which is a good default.
113 (defmacro with-current-notmuch-show-message (&rest body)
114 "Evaluate body with current buffer set to the text of current message"
116 (let ((id (notmuch-show-get-message-id)))
117 (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*"))))
118 (with-current-buffer buf
119 (call-process notmuch-command nil t nil "show" "--format=raw" id)
121 (kill-buffer buf)))))
123 (defun notmuch-show-view-all-mime-parts ()
124 "Use external viewers to view all attachments from the current message."
126 (with-current-notmuch-show-message
127 ; We override the mm-inline-media-tests to indicate which message
128 ; parts are already sufficiently handled by the original
129 ; presentation of the message in notmuch-show mode. These parts
130 ; will be inserted directly into the temporary buffer of
131 ; with-current-notmuch-show-message and silently discarded.
133 ; Any MIME part not explicitly mentioned here will be handled by an
134 ; external viewer as configured in the various mailcap files.
135 (let ((mm-inline-media-tests '(
136 ("text/.*" ignore identity)
137 ("application/pgp-signature" ignore identity)
138 ("multipart/alternative" ignore identity)
139 ("multipart/mixed" ignore identity)
140 ("multipart/related" ignore identity)
142 (mm-display-parts (mm-dissect-buffer)))))
144 (defun notmuch-foreach-mime-part (function mm-handle)
145 (cond ((stringp (car mm-handle))
146 (dolist (part (cdr mm-handle))
147 (notmuch-foreach-mime-part function part)))
148 ((bufferp (car mm-handle))
149 (funcall function mm-handle))
150 (t (dolist (part mm-handle)
151 (notmuch-foreach-mime-part function part)))))
153 (defun notmuch-count-attachments (mm-handle)
155 (notmuch-foreach-mime-part
157 (let ((disposition (mm-handle-disposition p)))
158 (and (listp disposition)
159 (or (equal (car disposition) "attachment")
160 (and (equal (car disposition) "inline")
161 (assq 'filename disposition)))
166 (defun notmuch-save-attachments (mm-handle &optional queryp)
167 (notmuch-foreach-mime-part
169 (let ((disposition (mm-handle-disposition p)))
170 (and (listp disposition)
171 (or (equal (car disposition) "attachment")
172 (and (equal (car disposition) "inline")
173 (assq 'filename disposition)))
176 (concat "Save '" (cdr (assq 'filename disposition)) "' ")))
180 (defun notmuch-show-save-attachments ()
181 "Save all attachments from the current message."
183 (with-current-notmuch-show-message
184 (let ((mm-handle (mm-dissect-buffer)))
185 (notmuch-save-attachments
186 mm-handle (> (notmuch-count-attachments mm-handle) 1))))
189 (defun notmuch-show-fontify-header ()
191 ((looking-at "[Tt]o:")
193 ((looking-at "[Bb]?[Cc][Cc]:")
195 ((looking-at "[Ss]ubject:")
196 'message-header-subject)
197 ((looking-at "[Ff]rom:")
198 'message-header-from)
200 'message-header-other))))
202 (overlay-put (make-overlay (point) (re-search-forward ":"))
203 'face 'message-header-name)
204 (overlay-put (make-overlay (point) (re-search-forward ".*$"))
207 (defun notmuch-show-colour-headers ()
208 "Apply some colouring to the current headers."
209 (goto-char (point-min))
210 (while (looking-at "^[A-Za-z][-A-Za-z0-9]*:")
211 (notmuch-show-fontify-header)
214 (defun notmuch-show-spaces-n (n)
215 "Return a string comprised of `n' spaces."
218 (defun notmuch-show-update-tags (tags)
219 "Update the displayed tags of the current message."
221 (goto-char (notmuch-show-message-top))
222 (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t)
223 (let ((inhibit-read-only t))
224 (replace-match (concat "(" (mapconcat 'identity tags " ") ")"))))))
226 (defun notmuch-show-clean-address (address)
227 "Try to clean a single email ADDRESS for display. Return
228 unchanged ADDRESS if parsing fails."
230 (let* ((parsed (mail-header-parse-address address))
231 (address (car parsed))
233 ;; Remove double quotes. They might be required during transport,
234 ;; but we don't need to see them.
236 (setq name (replace-regexp-in-string "\"" "" name)))
237 ;; If the address is 'foo@bar.com <foo@bar.com>' then show just
239 (when (string= name address)
244 (concat name " <" address ">")))
247 (defun notmuch-show-insert-headerline (headers date tags depth)
248 "Insert a notmuch style headerline based on HEADERS for a
249 message at DEPTH in the current thread."
250 (let ((start (point)))
251 (insert (notmuch-show-spaces-n (* notmuch-show-indent-messages-width depth))
252 (notmuch-show-clean-address (plist-get headers :From))
256 (mapconcat 'identity tags " ")
258 (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face)))
260 (defun notmuch-show-insert-header (header header-value)
261 "Insert a single header."
262 (insert header ": " header-value "\n"))
264 (defun notmuch-show-insert-headers (headers)
265 "Insert the headers of the current message."
266 (let ((start (point)))
267 (mapc (lambda (header)
268 (let* ((header-symbol (intern (concat ":" header)))
269 (header-value (plist-get headers header-symbol)))
270 (if (and header-value
271 (not (string-equal "" header-value)))
272 (notmuch-show-insert-header header header-value))))
273 notmuch-message-headers)
276 (narrow-to-region start (point-max))
277 (run-hooks 'notmuch-show-markup-headers-hook)))))
279 (define-button-type 'notmuch-show-part-button-type
280 'action 'notmuch-show-part-button-action
284 (defun notmuch-show-insert-part-header (nth content-type declared-type &optional name comment)
289 (if name (concat name ": ") "")
291 (if (not (string-equal declared-type content-type))
292 (concat " (as " content-type ")")
296 :type 'notmuch-show-part-button-type
298 :notmuch-filename name))
303 ;; Functions handling particular MIME parts.
305 (defun notmuch-show-save-part (message-id nth &optional filename)
306 (let ((process-crypto notmuch-show-process-crypto))
308 (setq notmuch-show-process-crypto process-crypto)
309 ;; Always acquires the part via `notmuch part', even if it is
310 ;; available in the JSON output.
311 (insert (notmuch-show-get-bodypart-internal message-id nth))
312 (let ((file (read-file-name
313 "Filename to save as: "
314 (or mailcap-download-directory "~/")
317 ;; Don't re-compress .gz & al. Arguably we should make
318 ;; `file-name-handler-alist' nil, but that would chop
319 ;; ange-ftp, which is reasonable to use here.
320 (mm-write-region (point-min) (point-max) file nil nil nil 'no-conversion t)))))
322 (defun notmuch-show-mm-display-part-inline (msg part nth content-type)
323 "Use the mm-decode/mm-view functions to display a part in the
324 current buffer, if possible."
325 (let ((display-buffer (current-buffer)))
327 (let* ((charset (plist-get part :content-charset))
328 (handle (mm-make-handle (current-buffer) `(,content-type (charset . ,charset)))))
329 (if (and (mm-inlinable-p handle)
330 (mm-inlined-p handle))
331 (let ((content (notmuch-show-get-bodypart-content msg part nth)))
333 (set-buffer display-buffer)
334 (mm-display-part handle)
338 (defvar notmuch-show-multipart/alternative-discouraged
342 ;; multipart/related usually contain a text/html part and some associated graphics.
346 (defun notmuch-show-multipart/*-to-list (part)
347 (mapcar (lambda (inner-part) (plist-get inner-part :content-type))
348 (plist-get part :content)))
350 (defun notmuch-show-multipart/alternative-choose (types)
351 ;; Based on `mm-preferred-alternative-precedence'.
353 (dolist (pref (reverse notmuch-show-multipart/alternative-discouraged))
354 (dolist (elem (copy-sequence seq))
355 (when (string-match pref elem)
356 (setq seq (nconc (delete elem seq) (list elem))))))
359 (defun notmuch-show-insert-part-multipart/alternative (msg part content-type nth depth declared-type)
360 (notmuch-show-insert-part-header nth declared-type content-type nil)
361 (let ((chosen-type (car (notmuch-show-multipart/alternative-choose (notmuch-show-multipart/*-to-list part))))
362 (inner-parts (plist-get part :content))
364 ;; This inserts all parts of the chosen type rather than just one,
365 ;; but it's not clear that this is the wrong thing to do - which
366 ;; should be chosen if there are more than one that match?
367 (mapc (lambda (inner-part)
368 (let ((inner-type (plist-get inner-part :content-type)))
369 (if (or notmuch-show-all-multipart/alternative-parts
370 (string= chosen-type inner-type))
371 (notmuch-show-insert-bodypart msg inner-part depth)
372 (notmuch-show-insert-part-header (plist-get inner-part :id) inner-type inner-type nil " (not shown)"))))
375 (when notmuch-show-indent-multipart
376 (indent-rigidly start (point) 1)))
379 (defun notmuch-show-setup-w3m ()
380 "Instruct w3m how to retrieve content from a \"related\" part of a message."
382 (if (boundp 'w3m-cid-retrieve-function-alist)
383 (unless (assq 'notmuch-show-mode w3m-cid-retrieve-function-alist)
384 (push (cons 'notmuch-show-mode 'notmuch-show-w3m-cid-retrieve)
385 w3m-cid-retrieve-function-alist)))
386 (setq mm-inline-text-html-with-images t))
388 (defvar w3m-current-buffer) ;; From `w3m.el'.
389 (defvar notmuch-show-w3m-cid-store nil)
390 (make-variable-buffer-local 'notmuch-show-w3m-cid-store)
392 (defun notmuch-show-w3m-cid-store-internal (content-id
397 (push (list content-id
402 notmuch-show-w3m-cid-store))
404 (defun notmuch-show-w3m-cid-store (msg part)
405 (let ((content-id (plist-get part :content-id)))
407 (notmuch-show-w3m-cid-store-internal (concat "cid:" content-id)
410 (plist-get part :content-type)
413 (defun notmuch-show-w3m-cid-retrieve (url &rest args)
414 (let ((matching-part (with-current-buffer w3m-current-buffer
415 (assoc url notmuch-show-w3m-cid-store))))
417 (let ((message-id (nth 1 matching-part))
418 (part-number (nth 2 matching-part))
419 (content-type (nth 3 matching-part))
420 (content (nth 4 matching-part)))
421 ;; If we don't already have the content, get it and cache
422 ;; it, as some messages reference the same cid: part many
423 ;; times (hundreds!), which results in many calls to
426 (setq content (notmuch-show-get-bodypart-internal (concat "id:" message-id)
428 (with-current-buffer w3m-current-buffer
429 (notmuch-show-w3m-cid-store-internal url
438 (defun notmuch-show-insert-part-multipart/related (msg part content-type nth depth declared-type)
439 (notmuch-show-insert-part-header nth declared-type content-type nil)
440 (let ((inner-parts (plist-get part :content))
443 ;; We assume that the first part is text/html and the remainder
444 ;; things that it references.
446 ;; Stash the non-primary parts.
448 (notmuch-show-w3m-cid-store msg part))
451 ;; Render the primary part.
452 (notmuch-show-insert-bodypart msg (car inner-parts) depth)
454 (when notmuch-show-indent-multipart
455 (indent-rigidly start (point) 1)))
458 (defun notmuch-show-insert-part-multipart/signed (msg part content-type nth depth declared-type)
459 (let ((button (notmuch-show-insert-part-header nth declared-type content-type nil)))
460 (button-put button 'face 'notmuch-crypto-part-header)
461 ;; add signature status button if sigstatus provided
462 (if (plist-member part :sigstatus)
463 (let* ((from (notmuch-show-get-header :From msg))
464 (sigstatus (car (plist-get part :sigstatus))))
465 (notmuch-crypto-insert-sigstatus-button sigstatus from))
466 ;; if we're not adding sigstatus, tell the user how they can get it
467 (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts.")))
469 (let ((inner-parts (plist-get part :content))
471 ;; Show all of the parts.
472 (mapc (lambda (inner-part)
473 (notmuch-show-insert-bodypart msg inner-part depth))
476 (when notmuch-show-indent-multipart
477 (indent-rigidly start (point) 1)))
480 (defun notmuch-show-insert-part-multipart/encrypted (msg part content-type nth depth declared-type)
481 (let ((button (notmuch-show-insert-part-header nth declared-type content-type nil)))
482 (button-put button 'face 'notmuch-crypto-part-header)
483 ;; add encryption status button if encstatus specified
484 (if (plist-member part :encstatus)
485 (let ((encstatus (car (plist-get part :encstatus))))
486 (notmuch-crypto-insert-encstatus-button encstatus)
487 ;; add signature status button if sigstatus specified
488 (if (plist-member part :sigstatus)
489 (let* ((from (notmuch-show-get-header :From msg))
490 (sigstatus (car (plist-get part :sigstatus))))
491 (notmuch-crypto-insert-sigstatus-button sigstatus from))))
492 ;; if we're not adding encstatus, tell the user how they can get it
493 (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts.")))
495 (let ((inner-parts (plist-get part :content))
497 ;; Show all of the parts.
498 (mapc (lambda (inner-part)
499 (notmuch-show-insert-bodypart msg inner-part depth))
502 (when notmuch-show-indent-multipart
503 (indent-rigidly start (point) 1)))
506 (defun notmuch-show-insert-part-multipart/* (msg part content-type nth depth declared-type)
507 (notmuch-show-insert-part-header nth declared-type content-type nil)
508 (let ((inner-parts (plist-get part :content))
510 ;; Show all of the parts.
511 (mapc (lambda (inner-part)
512 (notmuch-show-insert-bodypart msg inner-part depth))
515 (when notmuch-show-indent-multipart
516 (indent-rigidly start (point) 1)))
519 (defun notmuch-show-insert-part-message/rfc822 (msg part content-type nth depth declared-type)
520 (notmuch-show-insert-part-header nth declared-type content-type nil)
521 (let* ((message (car (plist-get part :content)))
522 (body (car (plist-get message :body)))
525 ;; Override `notmuch-message-headers' to force `From' to be
527 (let ((notmuch-message-headers '("From" "Subject" "To" "Cc" "Date")))
528 (notmuch-show-insert-headers (plist-get message :headers)))
530 ;; Blank line after headers to be compatible with the normal
535 (notmuch-show-insert-bodypart msg body depth)
537 (when notmuch-show-indent-multipart
538 (indent-rigidly start (point) 1)))
541 (defun notmuch-show-insert-part-text/plain (msg part content-type nth depth declared-type)
542 (let ((start (point)))
543 ;; If this text/plain part is not the first part in the message,
544 ;; insert a header to make this clear.
546 (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename)))
547 (insert (notmuch-show-get-bodypart-content msg part nth))
550 (narrow-to-region start (point-max))
551 (run-hook-with-args 'notmuch-show-insert-text/plain-hook msg depth))))
554 (defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth declared-type)
555 (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename))
556 (insert (with-temp-buffer
557 (insert (notmuch-show-get-bodypart-content msg part nth))
558 (goto-char (point-min))
559 (let ((file (make-temp-file "notmuch-ical"))
561 (icalendar--convert-ical-to-diary
562 (icalendar--read-element nil nil)
564 (set-buffer (get-file-buffer file))
565 (setq result (buffer-substring (point-min) (point-max)))
566 (set-buffer-modified-p nil)
567 (kill-buffer (current-buffer))
572 (defun notmuch-show-insert-part-application/octet-stream (msg part content-type nth depth declared-type)
573 ;; If we can deduce a MIME type from the filename of the attachment,
574 ;; do so and pass it on to the handler for that type.
575 (if (plist-get part :filename)
576 (let ((extension (file-name-extension (plist-get part :filename)))
580 (mailcap-parse-mimetypes)
581 (setq mime-type (mailcap-extension-to-mime extension))
583 (not (string-equal mime-type "application/octet-stream")))
584 (notmuch-show-insert-bodypart-internal msg part mime-type nth depth content-type)
588 ;; Handler for wash generated inline patch fake parts.
589 (defun notmuch-show-insert-part-inline-patch-fake-part (msg part content-type nth depth declared-type)
590 (notmuch-show-insert-part-*/* msg part "text/x-diff" nth depth "inline patch"))
592 (defun notmuch-show-insert-part-*/* (msg part content-type nth depth declared-type)
593 ;; This handler _must_ succeed - it is the handler of last resort.
594 (notmuch-show-insert-part-header nth content-type declared-type (plist-get part :filename))
595 (notmuch-show-mm-display-part-inline msg part nth content-type)
598 ;; Functions for determining how to handle MIME parts.
600 (defun notmuch-show-split-content-type (content-type)
601 (split-string content-type "/"))
603 (defun notmuch-show-handlers-for (content-type)
604 "Return a list of content handlers for a part of type CONTENT-TYPE."
609 ;; Reverse order of prefrence.
610 (list (intern (concat "notmuch-show-insert-part-*/*"))
612 "notmuch-show-insert-part-"
613 (car (notmuch-show-split-content-type content-type))
615 (intern (concat "notmuch-show-insert-part-" content-type))))
618 ;; Helper for parts which are generally not included in the default
620 ;; Uses the buffer-local variable notmuch-show-process-crypto to
621 ;; determine if parts should be decrypted first.
622 (defun notmuch-show-get-bodypart-internal (message-id part-number)
623 (let ((args '("show" "--format=raw"))
624 (part-arg (format "--part=%s" part-number)))
625 (setq args (append args (list part-arg)))
626 (if notmuch-show-process-crypto
627 (setq args (append args '("--decrypt"))))
628 (setq args (append args (list message-id)))
630 (let ((coding-system-for-read 'no-conversion))
632 (apply 'call-process (append (list notmuch-command nil (list t nil) nil) args))
635 (defun notmuch-show-get-bodypart-content (msg part nth)
636 (or (plist-get part :content)
637 (notmuch-show-get-bodypart-internal (concat "id:" (plist-get msg :id)) nth)))
641 (defun notmuch-show-insert-bodypart-internal (msg part content-type nth depth declared-type)
642 (let ((handlers (notmuch-show-handlers-for content-type)))
643 ;; Run the content handlers until one of them returns a non-nil
646 (not (funcall (car handlers) msg part content-type nth depth declared-type)))
647 (setq handlers (cdr handlers))))
650 (defun notmuch-show-insert-bodypart (msg part depth)
651 "Insert the body part PART at depth DEPTH in the current thread."
652 (let ((content-type (downcase (plist-get part :content-type)))
653 (nth (plist-get part :id)))
654 (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type))
655 ;; Some of the body part handlers leave point somewhere up in the
656 ;; part, so we make sure that we're down at the end.
657 (goto-char (point-max))
658 ;; Ensure that the part ends with a carriage return.
662 (defun notmuch-show-insert-body (msg body depth)
663 "Insert the body BODY at depth DEPTH in the current thread."
664 (mapc (lambda (part) (notmuch-show-insert-bodypart msg part depth)) body))
666 (defun notmuch-show-make-symbol (type)
667 (make-symbol (concat "notmuch-show-" type)))
669 (defun notmuch-show-strip-re (string)
670 (replace-regexp-in-string "\\([Rr]e: *\\)+" "" string))
672 (defvar notmuch-show-previous-subject "")
673 (make-variable-buffer-local 'notmuch-show-previous-subject)
675 (defun notmuch-show-insert-msg (msg depth)
676 "Insert the message MSG at depth DEPTH in the current thread."
677 (let* ((headers (plist-get msg :headers))
678 ;; Indentation causes the buffer offset of the start/end
679 ;; points to move, so we must use markers.
680 message-start message-end
681 content-start content-end
682 headers-start headers-end
684 (headers-invis-spec (notmuch-show-make-symbol "header"))
685 (message-invis-spec (notmuch-show-make-symbol "message"))
686 (bare-subject (notmuch-show-strip-re (plist-get headers :Subject))))
688 ;; Set `buffer-invisibility-spec' to `nil' (a list), otherwise
689 ;; removing items from `buffer-invisibility-spec' (which is what
690 ;; `notmuch-show-headers-visible' and
691 ;; `notmuch-show-message-visible' do) is a no-op and has no
692 ;; effect. This caused threads with only matching messages to have
693 ;; those messages hidden initially because
694 ;; `buffer-invisibility-spec' stayed `t'.
696 ;; This needs to be set here (rather than just above the call to
697 ;; `notmuch-show-headers-visible') because some of the part
698 ;; rendering or body washing functions
699 ;; (e.g. `notmuch-wash-text/plain-citations') manipulate
700 ;; `buffer-invisibility-spec').
701 (when (eq buffer-invisibility-spec t)
702 (setq buffer-invisibility-spec nil))
704 (setq message-start (point-marker))
706 (notmuch-show-insert-headerline headers
707 (or (if notmuch-show-relative-dates
708 (plist-get msg :date_relative)
710 (plist-get headers :Date))
711 (plist-get msg :tags) depth)
713 (setq content-start (point-marker))
715 (plist-put msg :headers-invis-spec headers-invis-spec)
716 (plist-put msg :message-invis-spec message-invis-spec)
718 ;; Set `headers-start' to point after the 'Subject:' header to be
719 ;; compatible with the existing implementation. This just sets it
720 ;; to after the first header.
721 (notmuch-show-insert-headers headers)
722 ;; Headers should include a blank line (backwards compatibility).
725 (goto-char content-start)
726 ;; If the subject of this message is the same as that of the
727 ;; previous message, don't display it when this message is
729 (when (not (string= notmuch-show-previous-subject
732 (setq headers-start (point-marker)))
733 (setq headers-end (point-marker))
735 (setq notmuch-show-previous-subject bare-subject)
737 (setq body-start (point-marker))
738 (notmuch-show-insert-body msg (plist-get msg :body) depth)
739 ;; Ensure that the body ends with a newline.
742 (setq body-end (point-marker))
743 (setq content-end (point-marker))
745 ;; Indent according to the depth in the thread.
746 (indent-rigidly content-start content-end (* notmuch-show-indent-messages-width depth))
748 (setq message-end (point-max-marker))
750 ;; Save the extents of this message over the whole text of the
752 (put-text-property message-start message-end :notmuch-message-extent (cons message-start message-end))
754 (let ((headers-overlay (make-overlay headers-start headers-end))
755 (invis-specs (list headers-invis-spec message-invis-spec)))
756 (overlay-put headers-overlay 'invisible invis-specs)
757 (overlay-put headers-overlay 'priority 10))
758 (overlay-put (make-overlay body-start body-end) 'invisible message-invis-spec)
760 ;; Save the properties for this message. Currently this saves the
761 ;; entire message (augmented it with other stuff), which seems
762 ;; like overkill. We might save a reduced subset (for example, not
764 (notmuch-show-set-message-properties msg)
766 ;; Set header visibility.
767 (notmuch-show-headers-visible msg notmuch-message-headers-visible)
769 ;; Message visibility depends on whether it matched the search
771 (notmuch-show-message-visible msg (plist-get msg :match))))
773 (defun notmuch-show-insert-tree (tree depth)
774 "Insert the message tree TREE at depth DEPTH in the current thread."
775 (let ((msg (car tree))
776 (replies (cadr tree)))
777 (notmuch-show-insert-msg msg depth)
778 (notmuch-show-insert-thread replies (1+ depth))))
780 (defun notmuch-show-insert-thread (thread depth)
781 "Insert the thread THREAD at depth DEPTH in the current forest."
782 (mapc (lambda (tree) (notmuch-show-insert-tree tree depth)) thread))
784 (defun notmuch-show-insert-forest (forest)
785 "Insert the forest of threads FOREST."
786 (mapc (lambda (thread) (notmuch-show-insert-thread thread 0)) forest))
788 (defvar notmuch-show-thread-id nil)
789 (make-variable-buffer-local 'notmuch-show-thread-id)
790 (defvar notmuch-show-parent-buffer nil)
791 (make-variable-buffer-local 'notmuch-show-parent-buffer)
792 (defvar notmuch-show-query-context nil)
793 (make-variable-buffer-local 'notmuch-show-query-context)
794 (defvar notmuch-show-buffer-name nil)
795 (make-variable-buffer-local 'notmuch-show-buffer-name)
797 (defun notmuch-show-buttonise-links (start end)
798 "Buttonise URLs and mail addresses between START and END.
800 This also turns id:\"<message id>\"-parts into buttons for
801 a corresponding notmuch search."
802 (goto-address-fontify-region start end)
805 (while (re-search-forward "id:\\(\"?\\)[^[:space:]\"]+\\1" end t)
806 ;; remove the overlay created by goto-address-mode
807 (remove-overlays (match-beginning 0) (match-end 0) 'goto-address t)
808 (make-text-button (match-beginning 0) (match-end 0)
809 'action `(lambda (arg)
810 (notmuch-show ,(match-string-no-properties 0)))
812 'help-echo "Mouse-1, RET: search for this message"
813 'face goto-address-mail-face))))
816 (defun notmuch-show (thread-id &optional parent-buffer query-context buffer-name crypto-switch)
817 "Run \"notmuch show\" with the given thread ID and display results.
819 The optional PARENT-BUFFER is the notmuch-search buffer from
820 which this notmuch-show command was executed, (so that the
821 next thread from that buffer can be show when done with this
824 The optional QUERY-CONTEXT is a notmuch search term. Only
825 messages from the thread matching this search term are shown if
828 The optional BUFFER-NAME provides the name of the buffer in
829 which the message thread is shown. If it is nil (which occurs
830 when the command is called interactively) the argument to the
833 The optional CRYPTO-SWITCH toggles the value of the
834 notmuch-crypto-process-mime customization variable for this show
836 (interactive "sNotmuch show: ")
837 (let* ((process-crypto (if crypto-switch
838 (not notmuch-crypto-process-mime)
839 notmuch-crypto-process-mime)))
840 (notmuch-show-worker thread-id parent-buffer query-context buffer-name process-crypto)))
842 (defun notmuch-show-worker (thread-id parent-buffer query-context buffer-name process-crypto)
843 (let* ((buffer-name (generate-new-buffer-name
845 (concat "*notmuch-" thread-id "*"))))
846 (buffer (get-buffer-create buffer-name))
847 (inhibit-read-only t))
848 (switch-to-buffer buffer)
850 ;; Don't track undo information for this buffer
851 (set 'buffer-undo-list t)
853 (setq notmuch-show-thread-id thread-id)
854 (setq notmuch-show-parent-buffer parent-buffer)
855 (setq notmuch-show-query-context query-context)
856 (setq notmuch-show-buffer-name buffer-name)
857 (setq notmuch-show-process-crypto process-crypto)
860 (goto-char (point-min))
862 (let* ((basic-args (list thread-id))
863 (args (if query-context
864 (append (list "\'") basic-args (list "and (" query-context ")\'"))
865 (append (list "\'") basic-args (list "\'")))))
866 (notmuch-show-insert-forest (notmuch-query-get-threads args))
867 ;; If the query context reduced the results to nothing, run
869 (when (and (eq (buffer-size) 0)
871 (notmuch-show-insert-forest
872 (notmuch-query-get-threads basic-args))))
874 (jit-lock-register #'notmuch-show-buttonise-links)
876 ;; Act on visual lines rather than logical lines.
879 (run-hooks 'notmuch-show-hook))
881 ;; Move straight to the first open message
882 (if (not (notmuch-show-message-visible-p))
883 (notmuch-show-next-open-message))
885 ;; Set the header line to the subject of the first open message.
886 (setq header-line-format (notmuch-show-strip-re (notmuch-show-get-subject)))
888 (notmuch-show-mark-read)))
890 (defun notmuch-show-refresh-view (&optional crypto-switch)
891 "Refresh the current view (with crypto switch if prefix given).
893 Kills the current buffer and reruns notmuch show with the same
894 thread id. If a prefix is given, crypto processing is toggled."
896 (let ((thread-id notmuch-show-thread-id)
897 (parent-buffer notmuch-show-parent-buffer)
898 (query-context notmuch-show-query-context)
899 (buffer-name notmuch-show-buffer-name)
900 (process-crypto (if crypto-switch
901 (not notmuch-show-process-crypto)
902 notmuch-show-process-crypto)))
903 (notmuch-kill-this-buffer)
904 (notmuch-show-worker thread-id parent-buffer query-context buffer-name process-crypto)))
906 (defvar notmuch-show-stash-map
907 (let ((map (make-sparse-keymap)))
908 (define-key map "c" 'notmuch-show-stash-cc)
909 (define-key map "d" 'notmuch-show-stash-date)
910 (define-key map "F" 'notmuch-show-stash-filename)
911 (define-key map "f" 'notmuch-show-stash-from)
912 (define-key map "i" 'notmuch-show-stash-message-id)
913 (define-key map "I" 'notmuch-show-stash-message-id-stripped)
914 (define-key map "s" 'notmuch-show-stash-subject)
915 (define-key map "T" 'notmuch-show-stash-tags)
916 (define-key map "t" 'notmuch-show-stash-to)
918 "Submap for stash commands")
919 (fset 'notmuch-show-stash-map notmuch-show-stash-map)
921 (defvar notmuch-show-mode-map
922 (let ((map (make-sparse-keymap)))
923 (define-key map "?" 'notmuch-help)
924 (define-key map "q" 'notmuch-kill-this-buffer)
925 (define-key map (kbd "<C-tab>") 'widget-backward)
926 (define-key map (kbd "M-TAB") 'notmuch-show-previous-button)
927 (define-key map (kbd "<backtab>") 'notmuch-show-previous-button)
928 (define-key map (kbd "TAB") 'notmuch-show-next-button)
929 (define-key map "s" 'notmuch-search)
930 (define-key map "m" 'notmuch-mua-new-mail)
931 (define-key map "f" 'notmuch-show-forward-message)
932 (define-key map "r" 'notmuch-show-reply-sender)
933 (define-key map "R" 'notmuch-show-reply)
934 (define-key map "|" 'notmuch-show-pipe-message)
935 (define-key map "w" 'notmuch-show-save-attachments)
936 (define-key map "V" 'notmuch-show-view-raw-message)
937 (define-key map "v" 'notmuch-show-view-all-mime-parts)
938 (define-key map "c" 'notmuch-show-stash-map)
939 (define-key map "=" 'notmuch-show-refresh-view)
940 (define-key map "h" 'notmuch-show-toggle-headers)
941 (define-key map "-" 'notmuch-show-remove-tag)
942 (define-key map "+" 'notmuch-show-add-tag)
943 (define-key map "x" 'notmuch-show-archive-thread-then-exit)
944 (define-key map "a" 'notmuch-show-archive-thread)
945 (define-key map "N" 'notmuch-show-next-message)
946 (define-key map "P" 'notmuch-show-previous-message)
947 (define-key map "n" 'notmuch-show-next-open-message)
948 (define-key map "p" 'notmuch-show-previous-open-message)
949 (define-key map (kbd "DEL") 'notmuch-show-rewind)
950 (define-key map " " 'notmuch-show-advance-and-archive)
951 (define-key map (kbd "M-RET") 'notmuch-show-open-or-close-all)
952 (define-key map (kbd "RET") 'notmuch-show-toggle-message)
954 "Keymap for \"notmuch show\" buffers.")
955 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
957 (defun notmuch-show-mode ()
958 "Major mode for viewing a thread with notmuch.
960 This buffer contains the results of the \"notmuch show\" command
961 for displaying a single thread of email from your email archives.
963 By default, various components of email messages, (citations,
964 signatures, already-read messages), are hidden. You can make
965 these parts visible by clicking with the mouse button or by
966 pressing RET after positioning the cursor on a hidden part, (for
967 which \\[notmuch-show-next-button] and \\[notmuch-show-previous-button] are helpful).
969 Reading the thread sequentially is well-supported by pressing
970 \\[notmuch-show-advance-and-archive]. This will scroll the current message (if necessary), advance
971 to the next message, or advance to the next thread (if already on
972 the last message of a thread).
974 Other commands are available to read or manipulate the thread
975 more selectively, (such as '\\[notmuch-show-next-message]' and '\\[notmuch-show-previous-message]' to advance to messages
976 without removing any tags, and '\\[notmuch-show-archive-thread]' to archive an entire thread
977 without scrolling through with \\[notmuch-show-advance-and-archive]).
979 You can add or remove arbitrary tags from the current message with
980 '\\[notmuch-show-add-tag]' or '\\[notmuch-show-remove-tag]'.
982 All currently available key bindings:
984 \\{notmuch-show-mode-map}"
986 (kill-all-local-variables)
987 (use-local-map notmuch-show-mode-map)
988 (setq major-mode 'notmuch-show-mode
989 mode-name "notmuch-show")
990 (setq buffer-read-only t))
992 (defun notmuch-show-move-to-message-top ()
993 (goto-char (notmuch-show-message-top)))
995 (defun notmuch-show-move-to-message-bottom ()
996 (goto-char (notmuch-show-message-bottom)))
998 (defun notmuch-show-message-adjust ()
1001 ;; Movement related functions.
1003 ;; There's some strangeness here where a text property applied to a
1004 ;; region a->b is not found when point is at b. We walk backwards
1005 ;; until finding the property.
1006 (defun notmuch-show-message-extent ()
1009 (while (not (setq r (get-text-property (point) :notmuch-message-extent)))
1013 (defun notmuch-show-message-top ()
1014 (car (notmuch-show-message-extent)))
1016 (defun notmuch-show-message-bottom ()
1017 (cdr (notmuch-show-message-extent)))
1019 (defun notmuch-show-goto-message-next ()
1020 (let ((start (point)))
1021 (notmuch-show-move-to-message-bottom)
1027 (defun notmuch-show-goto-message-previous ()
1028 (notmuch-show-move-to-message-top)
1032 (notmuch-show-move-to-message-top)
1035 ;; Functions relating to the visibility of messages and their
1038 (defun notmuch-show-element-visible (props visible-p spec-property)
1039 (let ((spec (plist-get props spec-property)))
1041 (remove-from-invisibility-spec spec)
1042 (add-to-invisibility-spec spec))))
1044 (defun notmuch-show-message-visible (props visible-p)
1045 (notmuch-show-element-visible props visible-p :message-invis-spec)
1046 (notmuch-show-set-prop :message-visible visible-p props))
1048 (defun notmuch-show-headers-visible (props visible-p)
1049 (notmuch-show-element-visible props visible-p :headers-invis-spec)
1050 (notmuch-show-set-prop :headers-visible visible-p props))
1052 ;; Functions for setting and getting attributes of the current
1055 (defun notmuch-show-set-message-properties (props)
1057 (notmuch-show-move-to-message-top)
1058 (put-text-property (point) (+ (point) 1) :notmuch-message-properties props)))
1060 (defun notmuch-show-get-message-properties ()
1061 "Return the properties of the current message as a plist.
1063 Some useful entries are:
1064 :headers - Property list containing the headers :Date, :Subject, :From, etc.
1065 :body - Body of the message
1066 :tags - Tags for this message"
1068 (notmuch-show-move-to-message-top)
1069 (get-text-property (point) :notmuch-message-properties)))
1071 (defun notmuch-show-set-prop (prop val &optional props)
1072 (let ((inhibit-read-only t)
1074 (notmuch-show-get-message-properties))))
1075 (plist-put props prop val)
1076 (notmuch-show-set-message-properties props)))
1078 (defun notmuch-show-get-prop (prop &optional props)
1079 (let ((props (or props
1080 (notmuch-show-get-message-properties))))
1081 (plist-get props prop)))
1083 (defun notmuch-show-get-message-id ()
1084 "Return the message id of the current message."
1085 (concat "id:\"" (notmuch-show-get-prop :id) "\""))
1087 ;; dme: Would it make sense to use a macro for many of these?
1089 (defun notmuch-show-get-filename ()
1090 "Return the filename of the current message."
1091 (notmuch-show-get-prop :filename))
1093 (defun notmuch-show-get-header (header &optional props)
1094 "Return the named header of the current message, if any."
1095 (plist-get (notmuch-show-get-prop :headers props) header))
1097 (defun notmuch-show-get-cc ()
1098 (notmuch-show-get-header :Cc))
1100 (defun notmuch-show-get-date ()
1101 (notmuch-show-get-header :Date))
1103 (defun notmuch-show-get-from ()
1104 (notmuch-show-get-header :From))
1106 (defun notmuch-show-get-subject ()
1107 (notmuch-show-get-header :Subject))
1109 (defun notmuch-show-get-to ()
1110 (notmuch-show-get-header :To))
1112 (defun notmuch-show-set-tags (tags)
1113 "Set the tags of the current message."
1114 (notmuch-show-set-prop :tags tags)
1115 (notmuch-show-update-tags tags))
1117 (defun notmuch-show-get-tags ()
1118 "Return the tags of the current message."
1119 (notmuch-show-get-prop :tags))
1121 (defun notmuch-show-message-visible-p ()
1122 "Is the current message visible?"
1123 (notmuch-show-get-prop :message-visible))
1125 (defun notmuch-show-headers-visible-p ()
1126 "Are the headers of the current message visible?"
1127 (notmuch-show-get-prop :headers-visible))
1129 (defun notmuch-show-mark-read ()
1130 "Mark the current message as read."
1131 (notmuch-show-remove-tag "unread"))
1133 ;; Functions for getting attributes of several messages in the current
1136 (defun notmuch-show-get-message-ids-for-open-messages ()
1137 "Return a list of all message IDs for open messages in the current thread."
1139 (let (message-ids done)
1140 (goto-char (point-min))
1142 (if (notmuch-show-message-visible-p)
1143 (setq message-ids (append message-ids (list (notmuch-show-get-message-id)))))
1144 (setq done (not (notmuch-show-goto-message-next)))
1149 ;; Commands typically bound to keys.
1151 (defun notmuch-show-advance ()
1152 "Advance through thread.
1154 If the current message in the thread is not yet fully visible,
1155 scroll by a near screenful to read more of the message.
1157 Otherwise, (the end of the current message is already within the
1158 current window), advance to the next open message."
1160 (let* ((end-of-this-message (notmuch-show-message-bottom))
1161 (visible-end-of-this-message (1- end-of-this-message))
1163 (while (invisible-p visible-end-of-this-message)
1164 (setq visible-end-of-this-message
1166 (1- (previous-single-char-property-change
1167 visible-end-of-this-message 'invisible)))))
1169 ;; Ideally we would test `end-of-this-message' against the result
1170 ;; of `window-end', but that doesn't account for the fact that
1171 ;; the end of the message might be hidden.
1172 ((and visible-end-of-this-message
1173 (> visible-end-of-this-message (window-end)))
1174 ;; The bottom of this message is not visible - scroll.
1177 ((not (= end-of-this-message (point-max)))
1178 ;; This is not the last message - move to the next visible one.
1179 (notmuch-show-next-open-message))
1182 ;; This is the last message - change the return value
1186 (defun notmuch-show-advance-and-archive ()
1187 "Advance through thread and archive.
1189 This command is intended to be one of the simplest ways to
1190 process a thread of email. It works exactly like
1191 notmuch-show-advance, in that it scrolls through messages in a
1192 show buffer, except that when it gets to the end of the buffer it
1193 archives the entire current thread, (remove the \"inbox\" tag
1194 from each message), kills the buffer, and displays the next
1195 thread from the search from which this thread was originally
1198 (if (notmuch-show-advance)
1199 (notmuch-show-archive-thread)))
1201 (defun notmuch-show-rewind ()
1202 "Backup through the thread, (reverse scrolling compared to \\[notmuch-show-advance-and-archive]).
1204 Specifically, if the beginning of the previous email is fewer
1205 than `window-height' lines from the current point, move to it
1206 just like `notmuch-show-previous-message'.
1208 Otherwise, just scroll down a screenful of the current message.
1210 This command does not modify any message tags, (it does not undo
1211 any effects from previous calls to
1212 `notmuch-show-advance-and-archive'."
1214 (let ((start-of-message (notmuch-show-message-top))
1215 (start-of-window (window-start)))
1217 ;; Either this message is properly aligned with the start of the
1218 ;; window or the start of this message is not visible on the
1220 ((or (= start-of-message start-of-window)
1221 (< start-of-message start-of-window))
1223 ;; If a small number of lines from the previous message are
1224 ;; visible, realign so that the top of the current message is at
1225 ;; the top of the screen.
1226 (if (<= (count-screen-lines (window-start) start-of-message)
1227 next-screen-context-lines)
1229 (goto-char (notmuch-show-message-top))
1230 (notmuch-show-message-adjust)))
1231 ;; Move to the top left of the window.
1232 (goto-char (window-start)))
1234 ;; Move to the previous message.
1235 (notmuch-show-previous-message)))))
1237 (defun notmuch-show-reply (&optional prompt-for-sender)
1238 "Reply to the sender and all recipients of the current message."
1240 (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender t))
1242 (defun notmuch-show-reply-sender (&optional prompt-for-sender)
1243 "Reply to the sender of the current message."
1245 (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender nil))
1247 (defun notmuch-show-forward-message (&optional prompt-for-sender)
1248 "Forward the current message."
1250 (with-current-notmuch-show-message
1251 (notmuch-mua-new-forward-message prompt-for-sender)))
1253 (defun notmuch-show-next-message ()
1254 "Show the next message."
1256 (if (notmuch-show-goto-message-next)
1258 (notmuch-show-mark-read)
1259 (notmuch-show-message-adjust))
1260 (goto-char (point-max))))
1262 (defun notmuch-show-previous-message ()
1263 "Show the previous message."
1265 (notmuch-show-goto-message-previous)
1266 (notmuch-show-mark-read)
1267 (notmuch-show-message-adjust))
1269 (defun notmuch-show-next-open-message ()
1270 "Show the next message."
1273 (while (and (setq r (notmuch-show-goto-message-next))
1274 (not (notmuch-show-message-visible-p))))
1277 (notmuch-show-mark-read)
1278 (notmuch-show-message-adjust))
1279 (goto-char (point-max)))))
1281 (defun notmuch-show-previous-open-message ()
1282 "Show the previous message."
1284 (while (and (notmuch-show-goto-message-previous)
1285 (not (notmuch-show-message-visible-p))))
1286 (notmuch-show-mark-read)
1287 (notmuch-show-message-adjust))
1289 (defun notmuch-show-view-raw-message ()
1290 "View the file holding the current message."
1292 (let* ((id (notmuch-show-get-message-id))
1293 (buf (get-buffer-create (concat "*notmuch-raw-" id "*"))))
1294 (call-process notmuch-command nil buf nil "show" "--format=raw" id)
1295 (switch-to-buffer buf)
1296 (goto-char (point-min))
1297 (set-buffer-modified-p nil)
1298 (view-buffer buf 'kill-buffer-if-not-modified)))
1300 (defun notmuch-show-pipe-message (entire-thread command)
1301 "Pipe the contents of the current message (or thread) to the given command.
1303 The given command will be executed with the raw contents of the
1304 current email message as stdin. Anything printed by the command
1305 to stdout or stderr will appear in the *notmuch-pipe* buffer.
1307 When invoked with a prefix argument, the command will receive all
1308 open messages in the current thread (formatted as an mbox) rather
1309 than only the current message."
1310 (interactive "P\nsPipe message to command: ")
1311 (let (shell-command)
1314 (concat notmuch-command " show --format=mbox "
1315 (shell-quote-argument
1316 (mapconcat 'identity (notmuch-show-get-message-ids-for-open-messages) " OR "))
1319 (concat notmuch-command " show --format=raw "
1320 (shell-quote-argument (notmuch-show-get-message-id)) " | " command)))
1321 (let ((buf (get-buffer-create (concat "*notmuch-pipe*"))))
1322 (with-current-buffer buf
1323 (setq buffer-read-only nil)
1325 (let ((exit-code (call-process-shell-command shell-command nil buf)))
1326 (goto-char (point-max))
1327 (set-buffer-modified-p nil)
1328 (setq buffer-read-only t)
1329 (unless (zerop exit-code)
1330 (switch-to-buffer-other-window buf)
1331 (message (format "Command '%s' exited abnormally with code %d"
1332 shell-command exit-code))))))))
1334 (defun notmuch-show-add-tags-worker (current-tags add-tags)
1335 "Add to `current-tags' with any tags from `add-tags' not
1336 currently present and return the result."
1337 (let ((result-tags (copy-sequence current-tags)))
1338 (mapc (lambda (add-tag)
1339 (unless (member add-tag current-tags)
1340 (setq result-tags (push add-tag result-tags))))
1342 (sort result-tags 'string<)))
1344 (defun notmuch-show-del-tags-worker (current-tags del-tags)
1345 "Remove any tags in `del-tags' from `current-tags' and return
1347 (let ((result-tags (copy-sequence current-tags)))
1348 (mapc (lambda (del-tag)
1349 (setq result-tags (delete del-tag result-tags)))
1353 (defun notmuch-show-add-tag (&rest toadd)
1354 "Add a tag to the current message."
1356 (list (notmuch-select-tag-with-completion "Tag to add: ")))
1358 (let* ((current-tags (notmuch-show-get-tags))
1359 (new-tags (notmuch-show-add-tags-worker current-tags toadd)))
1361 (unless (equal current-tags new-tags)
1362 (apply 'notmuch-tag (notmuch-show-get-message-id)
1363 (mapcar (lambda (s) (concat "+" s)) toadd))
1364 (notmuch-show-set-tags new-tags))))
1366 (defun notmuch-show-remove-tag (&rest toremove)
1367 "Remove a tag from the current message."
1369 (list (notmuch-select-tag-with-completion
1370 "Tag to remove: " (notmuch-show-get-message-id))))
1372 (let* ((current-tags (notmuch-show-get-tags))
1373 (new-tags (notmuch-show-del-tags-worker current-tags toremove)))
1375 (unless (equal current-tags new-tags)
1376 (apply 'notmuch-tag (notmuch-show-get-message-id)
1377 (mapcar (lambda (s) (concat "-" s)) toremove))
1378 (notmuch-show-set-tags new-tags))))
1380 (defun notmuch-show-toggle-headers ()
1381 "Toggle the visibility of the current message headers."
1383 (let ((props (notmuch-show-get-message-properties)))
1384 (notmuch-show-headers-visible
1386 (not (plist-get props :headers-visible))))
1387 (force-window-update))
1389 (defun notmuch-show-toggle-message ()
1390 "Toggle the visibility of the current message."
1392 (let ((props (notmuch-show-get-message-properties)))
1393 (notmuch-show-message-visible
1395 (not (plist-get props :message-visible))))
1396 (force-window-update))
1398 (defun notmuch-show-open-or-close-all ()
1399 "Set the visibility all of the messages in the current thread.
1400 By default make all of the messages visible. With a prefix
1401 argument, hide all of the messages."
1404 (goto-char (point-min))
1405 (loop do (notmuch-show-message-visible (notmuch-show-get-message-properties)
1406 (not current-prefix-arg))
1407 until (not (notmuch-show-goto-message-next))))
1408 (force-window-update))
1410 (defun notmuch-show-next-button ()
1411 "Advance point to the next button in the buffer."
1415 (defun notmuch-show-previous-button ()
1416 "Move point back to the previous button in the buffer."
1418 (backward-button 1))
1420 (defun notmuch-show-archive-thread-internal (show-next)
1421 ;; Remove the tag from the current set of messages.
1422 (goto-char (point-min))
1423 (loop do (notmuch-show-remove-tag "inbox")
1424 until (not (notmuch-show-goto-message-next)))
1425 ;; Move to the next item in the search results, if any.
1426 (let ((parent-buffer notmuch-show-parent-buffer))
1427 (notmuch-kill-this-buffer)
1430 (switch-to-buffer parent-buffer)
1433 (notmuch-search-show-thread))))))
1435 (defun notmuch-show-archive-thread ()
1436 "Archive each message in thread, then show next thread from search.
1438 Archive each message currently shown by removing the \"inbox\"
1439 tag from each. Then kill this buffer and show the next thread
1440 from the search from which this thread was originally shown.
1442 Note: This command is safe from any race condition of new messages
1443 being delivered to the same thread. It does not archive the
1444 entire thread, but only the messages shown in the current
1447 (notmuch-show-archive-thread-internal t))
1449 (defun notmuch-show-archive-thread-then-exit ()
1450 "Archive each message in thread, then exit back to search results."
1452 (notmuch-show-archive-thread-internal nil))
1454 (defun notmuch-show-stash-cc ()
1455 "Copy CC field of current message to kill-ring."
1457 (notmuch-common-do-stash (notmuch-show-get-cc)))
1459 (defun notmuch-show-stash-date ()
1460 "Copy date of current message to kill-ring."
1462 (notmuch-common-do-stash (notmuch-show-get-date)))
1464 (defun notmuch-show-stash-filename ()
1465 "Copy filename of current message to kill-ring."
1467 (notmuch-common-do-stash (notmuch-show-get-filename)))
1469 (defun notmuch-show-stash-from ()
1470 "Copy From address of current message to kill-ring."
1472 (notmuch-common-do-stash (notmuch-show-get-from)))
1474 (defun notmuch-show-stash-message-id ()
1475 "Copy message ID of current message to kill-ring."
1477 (notmuch-common-do-stash (notmuch-show-get-message-id)))
1479 (defun notmuch-show-stash-message-id-stripped ()
1480 "Copy message ID of current message (sans `id:' prefix) to kill-ring."
1482 (notmuch-common-do-stash (substring (notmuch-show-get-message-id) 4 -1)))
1484 (defun notmuch-show-stash-subject ()
1485 "Copy Subject field of current message to kill-ring."
1487 (notmuch-common-do-stash (notmuch-show-get-subject)))
1489 (defun notmuch-show-stash-tags ()
1490 "Copy tags of current message to kill-ring as a comma separated list."
1492 (notmuch-common-do-stash (mapconcat 'identity (notmuch-show-get-tags) ",")))
1494 (defun notmuch-show-stash-to ()
1495 "Copy To address of current message to kill-ring."
1497 (notmuch-common-do-stash (notmuch-show-get-to)))
1499 ;; Commands typically bound to buttons.
1501 (defun notmuch-show-part-button-action (button)
1502 (let ((nth (button-get button :notmuch-part)))
1504 (notmuch-show-save-part (notmuch-show-get-message-id) nth
1505 (button-get button :notmuch-filename))
1506 (message "Not a valid part (is it a fake part?)."))))
1510 (provide 'notmuch-show)