]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-show.el
emacs: add pipe attachment command
[notmuch] / emacs / notmuch-show.el
1 ;; notmuch-show.el --- displaying notmuch forests.
2 ;;
3 ;; Copyright © Carl Worth
4 ;; Copyright © David Edmondson
5 ;;
6 ;; This file is part of Notmuch.
7 ;;
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.
12 ;;
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.
17 ;;
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/>.
20 ;;
21 ;; Authors: Carl Worth <cworth@cworth.org>
22 ;;          David Edmondson <dme@dme.org>
23
24 (eval-when-compile (require 'cl))
25 (require 'mm-view)
26 (require 'message)
27 (require 'mm-decode)
28 (require 'mailcap)
29 (require 'icalendar)
30 (require 'goto-addr)
31
32 (require 'notmuch-lib)
33 (require 'notmuch-tag)
34 (require 'notmuch-query)
35 (require 'notmuch-wash)
36 (require 'notmuch-mua)
37 (require 'notmuch-crypto)
38 (require 'notmuch-print)
39
40 (declare-function notmuch-call-notmuch-process "notmuch" (&rest args))
41 (declare-function notmuch-fontify-headers "notmuch" nil)
42 (declare-function notmuch-search-next-thread "notmuch" nil)
43 (declare-function notmuch-search-show-thread "notmuch" nil)
44
45 (defcustom notmuch-message-headers '("Subject" "To" "Cc" "Date")
46   "Headers that should be shown in a message, in this order.
47
48 For an open message, all of these headers will be made visible
49 according to `notmuch-message-headers-visible' or can be toggled
50 with `notmuch-show-toggle-headers'. For a closed message, only
51 the first header in the list will be visible."
52   :type '(repeat string)
53   :group 'notmuch-show)
54
55 (defcustom notmuch-message-headers-visible t
56   "Should the headers be visible by default?
57
58 If this value is non-nil, then all of the headers defined in
59 `notmuch-message-headers' will be visible by default in the display
60 of each message. Otherwise, these headers will be hidden and
61 `notmuch-show-toggle-headers' can be used to make the visible for
62 any given message."
63   :type 'boolean
64   :group 'notmuch-show)
65
66 (defcustom notmuch-show-relative-dates t
67   "Display relative dates in the message summary line."
68   :type 'boolean
69   :group 'notmuch-show)
70
71 (defvar notmuch-show-markup-headers-hook '(notmuch-show-colour-headers)
72   "A list of functions called to decorate the headers listed in
73 `notmuch-message-headers'.")
74
75 (defcustom notmuch-show-hook '(notmuch-show-turn-on-visual-line-mode)
76   "Functions called after populating a `notmuch-show' buffer."
77   :type 'hook
78   :options '(notmuch-show-turn-on-visual-line-mode)
79   :group 'notmuch-show
80   :group 'notmuch-hooks)
81
82 (defcustom notmuch-show-insert-text/plain-hook '(notmuch-wash-wrap-long-lines
83                                                  notmuch-wash-tidy-citations
84                                                  notmuch-wash-elide-blank-lines
85                                                  notmuch-wash-excerpt-citations)
86   "Functions used to improve the display of text/plain parts."
87   :type 'hook
88   :options '(notmuch-wash-convert-inline-patch-to-part
89              notmuch-wash-wrap-long-lines
90              notmuch-wash-tidy-citations
91              notmuch-wash-elide-blank-lines
92              notmuch-wash-excerpt-citations)
93   :group 'notmuch-show
94   :group 'notmuch-hooks)
95
96 ;; Mostly useful for debugging.
97 (defcustom notmuch-show-all-multipart/alternative-parts t
98   "Should all parts of multipart/alternative parts be shown?"
99   :type 'boolean
100   :group 'notmuch-show)
101
102 (defcustom notmuch-show-indent-messages-width 1
103   "Width of message indentation in threads.
104
105 Messages are shown indented according to their depth in a thread.
106 This variable determines the width of this indentation measured
107 in number of blanks.  Defaults to `1', choose `0' to disable
108 indentation."
109   :type 'integer
110   :group 'notmuch-show)
111
112 (defcustom notmuch-show-indent-multipart nil
113   "Should the sub-parts of a multipart/* part be indented?"
114   ;; dme: Not sure which is a good default.
115   :type 'boolean
116   :group 'notmuch-show)
117
118 (defcustom notmuch-show-part-button-default-action 'notmuch-show-save-part
119   "Default part header button action (on ENTER or mouse click)."
120   :group 'notmuch-show
121   :type '(choice (const :tag "Save part"
122                         notmuch-show-save-part)
123                  (const :tag "View part"
124                         notmuch-show-view-part)
125                  (const :tag "View interactively"
126                         notmuch-show-interactively-view-part)))
127
128 (defcustom notmuch-show-only-matching-messages nil
129   "Only matching messages are shown by default."
130   :type 'boolean
131   :group 'notmuch-show)
132
133 (defvar notmuch-show-thread-id nil)
134 (make-variable-buffer-local 'notmuch-show-thread-id)
135 (put 'notmuch-show-thread-id 'permanent-local t)
136
137 (defvar notmuch-show-parent-buffer nil)
138 (make-variable-buffer-local 'notmuch-show-parent-buffer)
139 (put 'notmuch-show-parent-buffer 'permanent-local t)
140
141 (defvar notmuch-show-query-context nil)
142 (make-variable-buffer-local 'notmuch-show-query-context)
143 (put 'notmuch-show-query-context 'permanent-local t)
144
145 (defvar notmuch-show-process-crypto nil)
146 (make-variable-buffer-local 'notmuch-show-process-crypto)
147 (put 'notmuch-show-process-crypto 'permanent-local t)
148
149 (defvar notmuch-show-elide-non-matching-messages nil)
150 (make-variable-buffer-local 'notmuch-show-elide-non-matching-messages)
151 (put 'notmuch-show-elide-non-matching-messages 'permanent-local t)
152
153 (defvar notmuch-show-indent-content t)
154 (make-variable-buffer-local 'notmuch-show-indent-content)
155 (put 'notmuch-show-indent-content 'permanent-local t)
156
157 (defcustom notmuch-show-stash-mlarchive-link-alist
158   '(("Gmane" . "http://mid.gmane.org/")
159     ("MARC" . "http://marc.info/?i=")
160     ("Mail Archive, The" . "http://mail-archive.com/search?l=mid&q=")
161     ;; FIXME: can these services be searched by `Message-Id' ?
162     ;; ("MarkMail" . "http://markmail.org/")
163     ;; ("Nabble" . "http://nabble.com/")
164     ;; ("opensubscriber" . "http://opensubscriber.com/")
165     )
166   "List of Mailing List Archives to use when stashing links.
167
168 These URIs are concatenated with the current message's
169 Message-Id in `notmuch-show-stash-mlarchive-link'."
170   :type '(alist :key-type (string :tag "Name")
171                 :value-type (string :tag "URL"))
172   :group 'notmuch-show)
173
174 (defcustom notmuch-show-stash-mlarchive-link-default "Gmane"
175   "Default Mailing List Archive to use when stashing links.
176
177 This is used when `notmuch-show-stash-mlarchive-link' isn't
178 provided with an MLA argument nor `completing-read' input."
179   :type `(choice
180           ,@(mapcar
181              (lambda (mla)
182                (list 'const :tag (car mla) :value (car mla)))
183              notmuch-show-stash-mlarchive-link-alist))
184   :group 'notmuch-show)
185
186 (defmacro with-current-notmuch-show-message (&rest body)
187   "Evaluate body with current buffer set to the text of current message"
188   `(save-excursion
189      (let ((id (notmuch-show-get-message-id)))
190        (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*"))))
191          (with-current-buffer buf
192             (call-process notmuch-command nil t nil "show" "--format=raw" id)
193            ,@body)
194          (kill-buffer buf)))))
195
196 (defun notmuch-show-turn-on-visual-line-mode ()
197   "Enable Visual Line mode."
198   (visual-line-mode t))
199
200 (defun notmuch-show-view-all-mime-parts ()
201   "Use external viewers to view all attachments from the current message."
202   (interactive)
203   (with-current-notmuch-show-message
204    ;; We override the mm-inline-media-tests to indicate which message
205    ;; parts are already sufficiently handled by the original
206    ;; presentation of the message in notmuch-show mode. These parts
207    ;; will be inserted directly into the temporary buffer of
208    ;; with-current-notmuch-show-message and silently discarded.
209    ;;
210    ;; Any MIME part not explicitly mentioned here will be handled by an
211    ;; external viewer as configured in the various mailcap files.
212    (let ((mm-inline-media-tests '(
213                                   ("text/.*" ignore identity)
214                                   ("application/pgp-signature" ignore identity)
215                                   ("multipart/alternative" ignore identity)
216                                   ("multipart/mixed" ignore identity)
217                                   ("multipart/related" ignore identity)
218                                  )))
219      (mm-display-parts (mm-dissect-buffer)))))
220
221 (defun notmuch-foreach-mime-part (function mm-handle)
222   (cond ((stringp (car mm-handle))
223          (dolist (part (cdr mm-handle))
224            (notmuch-foreach-mime-part function part)))
225         ((bufferp (car mm-handle))
226          (funcall function mm-handle))
227         (t (dolist (part mm-handle)
228              (notmuch-foreach-mime-part function part)))))
229
230 (defun notmuch-count-attachments (mm-handle)
231   (let ((count 0))
232     (notmuch-foreach-mime-part
233      (lambda (p)
234        (let ((disposition (mm-handle-disposition p)))
235          (and (listp disposition)
236               (or (equal (car disposition) "attachment")
237                   (and (equal (car disposition) "inline")
238                        (assq 'filename disposition)))
239               (incf count))))
240      mm-handle)
241     count))
242
243 (defun notmuch-save-attachments (mm-handle &optional queryp)
244   (notmuch-foreach-mime-part
245    (lambda (p)
246      (let ((disposition (mm-handle-disposition p)))
247        (and (listp disposition)
248             (or (equal (car disposition) "attachment")
249                 (and (equal (car disposition) "inline")
250                      (assq 'filename disposition)))
251             (or (not queryp)
252                 (y-or-n-p
253                  (concat "Save '" (cdr (assq 'filename disposition)) "' ")))
254             (mm-save-part p))))
255    mm-handle))
256
257 (defun notmuch-show-save-attachments ()
258   "Save all attachments from the current message."
259   (interactive)
260   (with-current-notmuch-show-message
261    (let ((mm-handle (mm-dissect-buffer)))
262      (notmuch-save-attachments
263       mm-handle (> (notmuch-count-attachments mm-handle) 1))))
264   (message "Done"))
265
266 (defun notmuch-show-with-message-as-text (fn)
267   "Apply FN to a text representation of the current message.
268
269 FN is called with one argument, the message properties. It should
270 operation on the contents of the current buffer."
271
272   ;; Remake the header to ensure that all information is available.
273   (let* ((to (notmuch-show-get-to))
274          (cc (notmuch-show-get-cc))
275          (from (notmuch-show-get-from))
276          (subject (notmuch-show-get-subject))
277          (date (notmuch-show-get-date))
278          (tags (notmuch-show-get-tags))
279          (depth (notmuch-show-get-depth))
280
281          (header (concat
282                   "Subject: " subject "\n"
283                   "To: " to "\n"
284                   (if (not (string= cc ""))
285                       (concat "Cc: " cc "\n")
286                     "")
287                   "From: " from "\n"
288                   "Date: " date "\n"
289                   (if tags
290                       (concat "Tags: "
291                               (mapconcat #'identity tags ", ") "\n")
292                     "")))
293          (all (buffer-substring (notmuch-show-message-top)
294                                 (notmuch-show-message-bottom)))
295
296          (props (notmuch-show-get-message-properties))
297          (indenting notmuch-show-indent-content))
298     (with-temp-buffer
299       (insert all)
300       (if indenting
301           (indent-rigidly (point-min) (point-max) (- depth)))
302       ;; Remove the original header.
303       (goto-char (point-min))
304       (re-search-forward "^$" (point-max) nil)
305       (delete-region (point-min) (point))
306       (insert header)
307       (funcall fn props))))
308
309 (defun notmuch-show-print-message ()
310   "Print the current message."
311   (interactive)
312   (notmuch-show-with-message-as-text 'notmuch-print-message))
313
314 (defun notmuch-show-fontify-header ()
315   (let ((face (cond
316                ((looking-at "[Tt]o:")
317                 'message-header-to)
318                ((looking-at "[Bb]?[Cc][Cc]:")
319                 'message-header-cc)
320                ((looking-at "[Ss]ubject:")
321                 'message-header-subject)
322                ((looking-at "[Ff]rom:")
323                 'message-header-from)
324                (t
325                 'message-header-other))))
326
327     (overlay-put (make-overlay (point) (re-search-forward ":"))
328                  'face 'message-header-name)
329     (overlay-put (make-overlay (point) (re-search-forward ".*$"))
330                  'face face)))
331
332 (defun notmuch-show-colour-headers ()
333   "Apply some colouring to the current headers."
334   (goto-char (point-min))
335   (while (looking-at "^[A-Za-z][-A-Za-z0-9]*:")
336     (notmuch-show-fontify-header)
337     (forward-line)))
338
339 (defun notmuch-show-spaces-n (n)
340   "Return a string comprised of `n' spaces."
341   (make-string n ? ))
342
343 (defun notmuch-show-update-tags (tags)
344   "Update the displayed tags of the current message."
345   (save-excursion
346     (goto-char (notmuch-show-message-top))
347     (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t)
348         (let ((inhibit-read-only t))
349           (replace-match (concat "("
350                                  (propertize (mapconcat 'identity tags " ")
351                                              'face 'notmuch-tag-face)
352                                  ")"))))))
353
354 (defun notmuch-show-clean-address (address)
355   "Try to clean a single email ADDRESS for display.  Return
356 unchanged ADDRESS if parsing fails."
357   (condition-case nil
358     (let (p-name p-address)
359       ;; It would be convenient to use `mail-header-parse-address',
360       ;; but that expects un-decoded mailbox parts, whereas our
361       ;; mailbox parts are already decoded (and hence may contain
362       ;; UTF-8). Given that notmuch should handle most of the awkward
363       ;; cases, some simple string deconstruction should be sufficient
364       ;; here.
365       (cond
366        ;; "User <user@dom.ain>" style.
367        ((string-match "\\(.*\\) <\\(.*\\)>" address)
368         (setq p-name (match-string 1 address)
369               p-address (match-string 2 address)))
370
371        ;; "<user@dom.ain>" style.
372        ((string-match "<\\(.*\\)>" address)
373         (setq p-address (match-string 1 address)))
374
375        ;; Everything else.
376        (t
377         (setq p-address address)))
378
379       (when p-name
380         ;; Remove elements of the mailbox part that are not relevant for
381         ;; display, even if they are required during transport:
382         ;;
383         ;; Backslashes.
384         (setq p-name (replace-regexp-in-string "\\\\" "" p-name))
385
386         ;; Outer single and double quotes, which might be nested.
387         (loop
388          with start-of-loop
389          do (setq start-of-loop p-name)
390
391          when (string-match "^\"\\(.*\\)\"$" p-name)
392          do (setq p-name (match-string 1 p-name))
393
394          when (string-match "^'\\(.*\\)'$" p-name)
395          do (setq p-name (match-string 1 p-name))
396
397          until (string= start-of-loop p-name)))
398
399       ;; If the address is 'foo@bar.com <foo@bar.com>' then show just
400       ;; 'foo@bar.com'.
401       (when (string= p-name p-address)
402         (setq p-name nil))
403
404       ;; If no name results, return just the address.
405       (if (not p-name)
406           p-address
407         ;; Otherwise format the name and address together.
408         (concat p-name " <" p-address ">")))
409     (error address)))
410
411 (defun notmuch-show-insert-headerline (headers date tags depth)
412   "Insert a notmuch style headerline based on HEADERS for a
413 message at DEPTH in the current thread."
414   (let ((start (point)))
415     (insert (notmuch-show-spaces-n (* notmuch-show-indent-messages-width depth))
416             (notmuch-show-clean-address (plist-get headers :From))
417             " ("
418             date
419             ") ("
420             (propertize (mapconcat 'identity tags " ")
421                         'face 'notmuch-tag-face)
422             ")\n")
423     (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face)))
424
425 (defun notmuch-show-insert-header (header header-value)
426   "Insert a single header."
427   (insert header ": " header-value "\n"))
428
429 (defun notmuch-show-insert-headers (headers)
430   "Insert the headers of the current message."
431   (let ((start (point)))
432     (mapc (lambda (header)
433             (let* ((header-symbol (intern (concat ":" header)))
434                    (header-value (plist-get headers header-symbol)))
435               (if (and header-value
436                        (not (string-equal "" header-value)))
437                   (notmuch-show-insert-header header header-value))))
438           notmuch-message-headers)
439     (save-excursion
440       (save-restriction
441         (narrow-to-region start (point-max))
442         (run-hooks 'notmuch-show-markup-headers-hook)))))
443
444 (define-button-type 'notmuch-show-part-button-type
445   'action 'notmuch-show-part-button-default
446   'keymap 'notmuch-show-part-button-map
447   'follow-link t
448   'face 'message-mml)
449
450 (defvar notmuch-show-part-button-map
451   (let ((map (make-sparse-keymap)))
452     (set-keymap-parent map button-map)
453     (define-key map "s" 'notmuch-show-part-button-save)
454     (define-key map "v" 'notmuch-show-part-button-view)
455     (define-key map "o" 'notmuch-show-part-button-interactively-view)
456     (define-key map "|" 'notmuch-show-part-button-pipe)
457     map)
458   "Submap for button commands")
459 (fset 'notmuch-show-part-button-map notmuch-show-part-button-map)
460
461 (defun notmuch-show-insert-part-header (nth content-type declared-type &optional name comment)
462   (let ((button))
463     (setq button
464           (insert-button
465            (concat "[ "
466                    (if name (concat name ": ") "")
467                    declared-type
468                    (if (not (string-equal declared-type content-type))
469                        (concat " (as " content-type ")")
470                      "")
471                    (or comment "")
472                    " ]")
473            :type 'notmuch-show-part-button-type
474            :notmuch-part nth
475            :notmuch-filename name
476            :notmuch-content-type content-type))
477     (insert "\n")
478     ;; return button
479     button))
480
481 ;; Functions handling particular MIME parts.
482
483 (defmacro notmuch-with-temp-part-buffer (message-id nth &rest body)
484   (declare (indent 2))
485   (let ((process-crypto (make-symbol "process-crypto")))
486     `(let ((,process-crypto notmuch-show-process-crypto))
487        (with-temp-buffer
488          (setq notmuch-show-process-crypto ,process-crypto)
489          ;; Always acquires the part via `notmuch part', even if it is
490          ;; available in the JSON output.
491          (insert (notmuch-get-bodypart-internal ,message-id ,nth notmuch-show-process-crypto))
492          ,@body))))
493
494 (defun notmuch-show-save-part (message-id nth &optional filename content-type)
495   (notmuch-with-temp-part-buffer message-id nth
496     (let ((file (read-file-name
497                  "Filename to save as: "
498                  (or mailcap-download-directory "~/")
499                  nil nil
500                  filename)))
501       ;; Don't re-compress .gz & al.  Arguably we should make
502       ;; `file-name-handler-alist' nil, but that would chop
503       ;; ange-ftp, which is reasonable to use here.
504       (mm-write-region (point-min) (point-max) file nil nil nil 'no-conversion t))))
505
506 (defun notmuch-show-view-part (message-id nth &optional filename content-type )
507   (notmuch-with-temp-part-buffer message-id nth
508     ;; set mm-inlined-types to nil to force an external viewer
509     (let ((handle (mm-make-handle (current-buffer) (list content-type)))
510           (mm-inlined-types nil))
511       ;; We override mm-save-part as notmuch-show-save-part is better
512       ;; since it offers the filename. We need to lexically bind
513       ;; everything we need for notmuch-show-save-part to prevent
514       ;; potential dynamic shadowing.
515       (lexical-let ((message-id message-id)
516                     (nth nth)
517                     (filename filename)
518                     (content-type content-type))
519         (flet ((mm-save-part (&rest args) (notmuch-show-save-part
520                                            message-id nth filename content-type)))
521           (mm-display-part handle))))))
522
523 (defun notmuch-show-interactively-view-part (message-id nth &optional filename content-type)
524   (notmuch-with-temp-part-buffer message-id nth
525     (let ((handle (mm-make-handle (current-buffer) (list content-type))))
526       (mm-interactively-view-part handle))))
527
528 (defun notmuch-show-pipe-part (message-id nth &optional filename content-type)
529   (notmuch-with-temp-part-buffer message-id nth
530     (let ((handle (mm-make-handle (current-buffer) (list content-type))))
531       (mm-pipe-part handle))))
532
533 (defun notmuch-show-multipart/*-to-list (part)
534   (mapcar (lambda (inner-part) (plist-get inner-part :content-type))
535           (plist-get part :content)))
536
537 (defun notmuch-show-insert-part-multipart/alternative (msg part content-type nth depth declared-type)
538   (notmuch-show-insert-part-header nth declared-type content-type nil)
539   (let ((chosen-type (car (notmuch-multipart/alternative-choose (notmuch-show-multipart/*-to-list part))))
540         (inner-parts (plist-get part :content))
541         (start (point)))
542     ;; This inserts all parts of the chosen type rather than just one,
543     ;; but it's not clear that this is the wrong thing to do - which
544     ;; should be chosen if there are more than one that match?
545     (mapc (lambda (inner-part)
546             (let ((inner-type (plist-get inner-part :content-type)))
547               (if (or notmuch-show-all-multipart/alternative-parts
548                       (string= chosen-type inner-type))
549                   (notmuch-show-insert-bodypart msg inner-part depth)
550                 (notmuch-show-insert-part-header (plist-get inner-part :id) inner-type inner-type nil " (not shown)"))))
551           inner-parts)
552
553     (when notmuch-show-indent-multipart
554       (indent-rigidly start (point) 1)))
555   t)
556
557 (defun notmuch-show-setup-w3m ()
558   "Instruct w3m how to retrieve content from a \"related\" part of a message."
559   (interactive)
560   (if (boundp 'w3m-cid-retrieve-function-alist)
561     (unless (assq 'notmuch-show-mode w3m-cid-retrieve-function-alist)
562       (push (cons 'notmuch-show-mode 'notmuch-show-w3m-cid-retrieve)
563             w3m-cid-retrieve-function-alist)))
564   (setq mm-inline-text-html-with-images t))
565
566 (defvar w3m-current-buffer) ;; From `w3m.el'.
567 (defvar notmuch-show-w3m-cid-store nil)
568 (make-variable-buffer-local 'notmuch-show-w3m-cid-store)
569
570 (defun notmuch-show-w3m-cid-store-internal (content-id
571                                             message-id
572                                             part-number
573                                             content-type
574                                             content)
575   (push (list content-id
576               message-id
577               part-number
578               content-type
579               content)
580         notmuch-show-w3m-cid-store))
581
582 (defun notmuch-show-w3m-cid-store (msg part)
583   (let ((content-id (plist-get part :content-id)))
584     (when content-id
585       (notmuch-show-w3m-cid-store-internal (concat "cid:" content-id)
586                                            (plist-get msg :id)
587                                            (plist-get part :id)
588                                            (plist-get part :content-type)
589                                            nil))))
590
591 (defun notmuch-show-w3m-cid-retrieve (url &rest args)
592   (let ((matching-part (with-current-buffer w3m-current-buffer
593                          (assoc url notmuch-show-w3m-cid-store))))
594     (if matching-part
595         (let ((message-id (nth 1 matching-part))
596               (part-number (nth 2 matching-part))
597               (content-type (nth 3 matching-part))
598               (content (nth 4 matching-part)))
599           ;; If we don't already have the content, get it and cache
600           ;; it, as some messages reference the same cid: part many
601           ;; times (hundreds!), which results in many calls to
602           ;; `notmuch part'.
603           (unless content
604             (setq content (notmuch-get-bodypart-internal (notmuch-id-to-query message-id)
605                                                               part-number notmuch-show-process-crypto))
606             (with-current-buffer w3m-current-buffer
607               (notmuch-show-w3m-cid-store-internal url
608                                                    message-id
609                                                    part-number
610                                                    content-type
611                                                    content)))
612           (insert content)
613           content-type)
614       nil)))
615
616 (defun notmuch-show-insert-part-multipart/related (msg part content-type nth depth declared-type)
617   (notmuch-show-insert-part-header nth declared-type content-type nil)
618   (let ((inner-parts (plist-get part :content))
619         (start (point)))
620
621     ;; We assume that the first part is text/html and the remainder
622     ;; things that it references.
623
624     ;; Stash the non-primary parts.
625     (mapc (lambda (part)
626             (notmuch-show-w3m-cid-store msg part))
627           (cdr inner-parts))
628
629     ;; Render the primary part.
630     (notmuch-show-insert-bodypart msg (car inner-parts) depth)
631
632     (when notmuch-show-indent-multipart
633       (indent-rigidly start (point) 1)))
634   t)
635
636 (defun notmuch-show-insert-part-multipart/signed (msg part content-type nth depth declared-type)
637   (let ((button (notmuch-show-insert-part-header nth declared-type content-type nil)))
638     (button-put button 'face 'notmuch-crypto-part-header)
639     ;; add signature status button if sigstatus provided
640     (if (plist-member part :sigstatus)
641         (let* ((from (notmuch-show-get-header :From msg))
642                (sigstatus (car (plist-get part :sigstatus))))
643           (notmuch-crypto-insert-sigstatus-button sigstatus from))
644       ;; if we're not adding sigstatus, tell the user how they can get it
645       (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic MIME parts.")))
646
647   (let ((inner-parts (plist-get part :content))
648         (start (point)))
649     ;; Show all of the parts.
650     (mapc (lambda (inner-part)
651             (notmuch-show-insert-bodypart msg inner-part depth))
652           inner-parts)
653
654     (when notmuch-show-indent-multipart
655       (indent-rigidly start (point) 1)))
656   t)
657
658 (defun notmuch-show-insert-part-multipart/encrypted (msg part content-type nth depth declared-type)
659   (let ((button (notmuch-show-insert-part-header nth declared-type content-type nil)))
660     (button-put button 'face 'notmuch-crypto-part-header)
661     ;; add encryption status button if encstatus specified
662     (if (plist-member part :encstatus)
663         (let ((encstatus (car (plist-get part :encstatus))))
664           (notmuch-crypto-insert-encstatus-button encstatus)
665           ;; add signature status button if sigstatus specified
666           (if (plist-member part :sigstatus)
667               (let* ((from (notmuch-show-get-header :From msg))
668                      (sigstatus (car (plist-get part :sigstatus))))
669                 (notmuch-crypto-insert-sigstatus-button sigstatus from))))
670       ;; if we're not adding encstatus, tell the user how they can get it
671       (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic MIME parts.")))
672
673   (let ((inner-parts (plist-get part :content))
674         (start (point)))
675     ;; Show all of the parts.
676     (mapc (lambda (inner-part)
677             (notmuch-show-insert-bodypart msg inner-part depth))
678           inner-parts)
679
680     (when notmuch-show-indent-multipart
681       (indent-rigidly start (point) 1)))
682   t)
683
684 (defun notmuch-show-insert-part-multipart/* (msg part content-type nth depth declared-type)
685   (notmuch-show-insert-part-header nth declared-type content-type nil)
686   (let ((inner-parts (plist-get part :content))
687         (start (point)))
688     ;; Show all of the parts.
689     (mapc (lambda (inner-part)
690             (notmuch-show-insert-bodypart msg inner-part depth))
691           inner-parts)
692
693     (when notmuch-show-indent-multipart
694       (indent-rigidly start (point) 1)))
695   t)
696
697 (defun notmuch-show-insert-part-message/rfc822 (msg part content-type nth depth declared-type)
698   (notmuch-show-insert-part-header nth declared-type content-type nil)
699   (let* ((message (car (plist-get part :content)))
700          (body (car (plist-get message :body)))
701          (start (point)))
702
703     ;; Override `notmuch-message-headers' to force `From' to be
704     ;; displayed.
705     (let ((notmuch-message-headers '("From" "Subject" "To" "Cc" "Date")))
706       (notmuch-show-insert-headers (plist-get message :headers)))
707
708     ;; Blank line after headers to be compatible with the normal
709     ;; message display.
710     (insert "\n")
711
712     ;; Show the body
713     (notmuch-show-insert-bodypart msg body depth)
714
715     (when notmuch-show-indent-multipart
716       (indent-rigidly start (point) 1)))
717   t)
718
719 (defun notmuch-show-insert-part-text/plain (msg part content-type nth depth declared-type)
720   (let ((start (point)))
721     ;; If this text/plain part is not the first part in the message,
722     ;; insert a header to make this clear.
723     (if (> nth 1)
724         (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename)))
725     (insert (notmuch-get-bodypart-content msg part nth notmuch-show-process-crypto))
726     (save-excursion
727       (save-restriction
728         (narrow-to-region start (point-max))
729         (run-hook-with-args 'notmuch-show-insert-text/plain-hook msg depth))))
730   t)
731
732 (defun notmuch-show-insert-part-text/calendar (msg part content-type nth depth declared-type)
733   (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename))
734   (insert (with-temp-buffer
735             (insert (notmuch-get-bodypart-content msg part nth notmuch-show-process-crypto))
736             (goto-char (point-min))
737             (let ((file (make-temp-file "notmuch-ical"))
738                   result)
739               (icalendar--convert-ical-to-diary
740                (icalendar--read-element nil nil)
741                file t)
742               (set-buffer (get-file-buffer file))
743               (setq result (buffer-substring (point-min) (point-max)))
744               (set-buffer-modified-p nil)
745               (kill-buffer (current-buffer))
746               (delete-file file)
747               result)))
748   t)
749
750 ;; For backwards compatibility.
751 (defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth declared-type)
752   (notmuch-show-insert-part-text/calendar msg part content-type nth depth declared-type))
753
754 (defun notmuch-show-insert-part-application/octet-stream (msg part content-type nth depth declared-type)
755   ;; If we can deduce a MIME type from the filename of the attachment,
756   ;; do so and pass it on to the handler for that type.
757   (if (plist-get part :filename)
758       (let ((extension (file-name-extension (plist-get part :filename)))
759             mime-type)
760         (if extension
761             (progn
762               (mailcap-parse-mimetypes)
763               (setq mime-type (mailcap-extension-to-mime extension))
764               (if (and mime-type
765                        (not (string-equal mime-type "application/octet-stream")))
766                   (notmuch-show-insert-bodypart-internal msg part mime-type nth depth content-type)
767                 nil))
768           nil))))
769
770 ;; Handler for wash generated inline patch fake parts.
771 (defun notmuch-show-insert-part-inline-patch-fake-part (msg part content-type nth depth declared-type)
772   (notmuch-show-insert-part-*/* msg part "text/x-diff" nth depth "inline patch"))
773
774 (defun notmuch-show-insert-part-*/* (msg part content-type nth depth declared-type)
775   ;; This handler _must_ succeed - it is the handler of last resort.
776   (notmuch-show-insert-part-header nth content-type declared-type (plist-get part :filename))
777   (notmuch-mm-display-part-inline msg part nth content-type notmuch-show-process-crypto)
778   t)
779
780 ;; Functions for determining how to handle MIME parts.
781
782 (defun notmuch-show-handlers-for (content-type)
783   "Return a list of content handlers for a part of type CONTENT-TYPE."
784   (let (result)
785     (mapc (lambda (func)
786             (if (functionp func)
787                 (push func result)))
788           ;; Reverse order of prefrence.
789           (list (intern (concat "notmuch-show-insert-part-*/*"))
790                 (intern (concat
791                          "notmuch-show-insert-part-"
792                          (car (notmuch-split-content-type content-type))
793                          "/*"))
794                 (intern (concat "notmuch-show-insert-part-" content-type))))
795     result))
796
797 ;; \f
798
799 (defun notmuch-show-insert-bodypart-internal (msg part content-type nth depth declared-type)
800   (let ((handlers (notmuch-show-handlers-for content-type)))
801     ;; Run the content handlers until one of them returns a non-nil
802     ;; value.
803     (while (and handlers
804                 (not (funcall (car handlers) msg part content-type nth depth declared-type)))
805       (setq handlers (cdr handlers))))
806   t)
807
808 (defun notmuch-show-insert-bodypart (msg part depth)
809   "Insert the body part PART at depth DEPTH in the current thread."
810   (let ((content-type (downcase (plist-get part :content-type)))
811         (nth (plist-get part :id)))
812     (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type))
813   ;; Some of the body part handlers leave point somewhere up in the
814   ;; part, so we make sure that we're down at the end.
815   (goto-char (point-max))
816   ;; Ensure that the part ends with a carriage return.
817   (unless (bolp)
818     (insert "\n")))
819
820 (defun notmuch-show-insert-body (msg body depth)
821   "Insert the body BODY at depth DEPTH in the current thread."
822   (mapc (lambda (part) (notmuch-show-insert-bodypart msg part depth)) body))
823
824 (defun notmuch-show-make-symbol (type)
825   (make-symbol (concat "notmuch-show-" type)))
826
827 (defun notmuch-show-strip-re (string)
828   (replace-regexp-in-string "^\\([Rr]e: *\\)+" "" string))
829
830 (defvar notmuch-show-previous-subject "")
831 (make-variable-buffer-local 'notmuch-show-previous-subject)
832
833 (defun notmuch-show-insert-msg (msg depth)
834   "Insert the message MSG at depth DEPTH in the current thread."
835   (let* ((headers (plist-get msg :headers))
836          ;; Indentation causes the buffer offset of the start/end
837          ;; points to move, so we must use markers.
838          message-start message-end
839          content-start content-end
840          headers-start headers-end
841          body-start body-end
842          (headers-invis-spec (notmuch-show-make-symbol "header"))
843          (message-invis-spec (notmuch-show-make-symbol "message"))
844          (bare-subject (notmuch-show-strip-re (plist-get headers :Subject))))
845
846     ;; Set `buffer-invisibility-spec' to `nil' (a list), otherwise
847     ;; removing items from `buffer-invisibility-spec' (which is what
848     ;; `notmuch-show-headers-visible' and
849     ;; `notmuch-show-message-visible' do) is a no-op and has no
850     ;; effect. This caused threads with only matching messages to have
851     ;; those messages hidden initially because
852     ;; `buffer-invisibility-spec' stayed `t'.
853     ;;
854     ;; This needs to be set here (rather than just above the call to
855     ;; `notmuch-show-headers-visible') because some of the part
856     ;; rendering or body washing functions
857     ;; (e.g. `notmuch-wash-text/plain-citations') manipulate
858     ;; `buffer-invisibility-spec').
859     (when (eq buffer-invisibility-spec t)
860       (setq buffer-invisibility-spec nil))
861
862     (setq message-start (point-marker))
863
864     (notmuch-show-insert-headerline headers
865                                     (or (if notmuch-show-relative-dates
866                                             (plist-get msg :date_relative)
867                                           nil)
868                                         (plist-get headers :Date))
869                                     (plist-get msg :tags) depth)
870
871     (setq content-start (point-marker))
872
873     (plist-put msg :headers-invis-spec headers-invis-spec)
874     (plist-put msg :message-invis-spec message-invis-spec)
875
876     ;; Set `headers-start' to point after the 'Subject:' header to be
877     ;; compatible with the existing implementation. This just sets it
878     ;; to after the first header.
879     (notmuch-show-insert-headers headers)
880     (save-excursion
881       (goto-char content-start)
882       ;; If the subject of this message is the same as that of the
883       ;; previous message, don't display it when this message is
884       ;; collapsed.
885       (when (not (string= notmuch-show-previous-subject
886                           bare-subject))
887         (forward-line 1))
888       (setq headers-start (point-marker)))
889     (setq headers-end (point-marker))
890
891     (setq notmuch-show-previous-subject bare-subject)
892
893     (setq body-start (point-marker))
894     ;; A blank line between the headers and the body.
895     (insert "\n")
896     (notmuch-show-insert-body msg (plist-get msg :body)
897                               (if notmuch-show-indent-content depth 0))
898     ;; Ensure that the body ends with a newline.
899     (unless (bolp)
900       (insert "\n"))
901     (setq body-end (point-marker))
902     (setq content-end (point-marker))
903
904     ;; Indent according to the depth in the thread.
905     (if notmuch-show-indent-content
906         (indent-rigidly content-start content-end (* notmuch-show-indent-messages-width depth)))
907
908     (setq message-end (point-max-marker))
909
910     ;; Save the extents of this message over the whole text of the
911     ;; message.
912     (put-text-property message-start message-end :notmuch-message-extent (cons message-start message-end))
913
914     (let ((headers-overlay (make-overlay headers-start headers-end))
915           (invis-specs (list headers-invis-spec message-invis-spec)))
916       (overlay-put headers-overlay 'invisible invis-specs)
917       (overlay-put headers-overlay 'priority 10))
918     (overlay-put (make-overlay body-start body-end) 'invisible message-invis-spec)
919
920     (plist-put msg :depth depth)
921
922     ;; Save the properties for this message. Currently this saves the
923     ;; entire message (augmented it with other stuff), which seems
924     ;; like overkill. We might save a reduced subset (for example, not
925     ;; the content).
926     (notmuch-show-set-message-properties msg)
927
928     ;; Set header visibility.
929     (notmuch-show-headers-visible msg notmuch-message-headers-visible)
930
931     ;; Message visibility depends on whether it matched the search
932     ;; criteria.
933     (notmuch-show-message-visible msg (and (plist-get msg :match)
934                                            (not (plist-get msg :excluded))))))
935
936 (defun notmuch-show-toggle-process-crypto ()
937   "Toggle the processing of cryptographic MIME parts."
938   (interactive)
939   (setq notmuch-show-process-crypto (not notmuch-show-process-crypto))
940   (message (if notmuch-show-process-crypto
941                "Processing cryptographic MIME parts."
942              "Not processing cryptographic MIME parts."))
943   (notmuch-show-refresh-view))
944
945 (defun notmuch-show-toggle-elide-non-matching ()
946   "Toggle the display of non-matching messages."
947   (interactive)
948   (setq notmuch-show-elide-non-matching-messages (not notmuch-show-elide-non-matching-messages))
949   (message (if notmuch-show-elide-non-matching-messages
950                "Showing matching messages only."
951              "Showing all messages."))
952   (notmuch-show-refresh-view))
953
954 (defun notmuch-show-toggle-thread-indentation ()
955   "Toggle the indentation of threads."
956   (interactive)
957   (setq notmuch-show-indent-content (not notmuch-show-indent-content))
958   (message (if notmuch-show-indent-content
959                "Content is indented."
960              "Content is not indented."))
961   (notmuch-show-refresh-view))
962
963 (defun notmuch-show-insert-tree (tree depth)
964   "Insert the message tree TREE at depth DEPTH in the current thread."
965   (let ((msg (car tree))
966         (replies (cadr tree)))
967     (if (or (not notmuch-show-elide-non-matching-messages)
968             (plist-get msg :match))
969         (notmuch-show-insert-msg msg depth))
970     (notmuch-show-insert-thread replies (1+ depth))))
971
972 (defun notmuch-show-insert-thread (thread depth)
973   "Insert the thread THREAD at depth DEPTH in the current forest."
974   (mapc (lambda (tree) (notmuch-show-insert-tree tree depth)) thread))
975
976 (defun notmuch-show-insert-forest (forest)
977   "Insert the forest of threads FOREST."
978   (mapc (lambda (thread) (notmuch-show-insert-thread thread 0)) forest))
979
980 (defun notmuch-show-buttonise-links (start end)
981   "Buttonise URLs and mail addresses between START and END.
982
983 This also turns id:\"<message id>\"-parts into buttons for
984 a corresponding notmuch search."
985   (goto-address-fontify-region start end)
986   (save-excursion
987     (goto-char start)
988     (while (re-search-forward "id:\\(\"?\\)[^[:space:]\"]+\\1" end t)
989       ;; remove the overlay created by goto-address-mode
990       (remove-overlays (match-beginning 0) (match-end 0) 'goto-address t)
991       (make-text-button (match-beginning 0) (match-end 0)
992                         'action `(lambda (arg)
993                                    (notmuch-show ,(match-string-no-properties 0)))
994                         'follow-link t
995                         'help-echo "Mouse-1, RET: search for this message"
996                         'face goto-address-mail-face))))
997
998 ;;;###autoload
999 (defun notmuch-show (thread-id &optional parent-buffer query-context buffer-name)
1000   "Run \"notmuch show\" with the given thread ID and display results.
1001
1002 The optional PARENT-BUFFER is the notmuch-search buffer from
1003 which this notmuch-show command was executed, (so that the
1004 next thread from that buffer can be show when done with this
1005 one).
1006
1007 The optional QUERY-CONTEXT is a notmuch search term. Only
1008 messages from the thread matching this search term are shown if
1009 non-nil.
1010
1011 The optional BUFFER-NAME provides the name of the buffer in
1012 which the message thread is shown. If it is nil (which occurs
1013 when the command is called interactively) the argument to the
1014 function is used."
1015   (interactive "sNotmuch show: ")
1016   (let ((buffer-name (generate-new-buffer-name
1017                       (or buffer-name
1018                           (concat "*notmuch-" thread-id "*")))))
1019     (switch-to-buffer (get-buffer-create buffer-name))
1020     ;; Set the default value for `notmuch-show-process-crypto' in this
1021     ;; buffer.
1022     (setq notmuch-show-process-crypto notmuch-crypto-process-mime)
1023     ;; Set the default value for
1024     ;; `notmuch-show-elide-non-matching-messages' in this buffer. If
1025     ;; there is a prefix argument, invert the default.
1026     (setq notmuch-show-elide-non-matching-messages notmuch-show-only-matching-messages)
1027     (if current-prefix-arg
1028         (setq notmuch-show-elide-non-matching-messages (not notmuch-show-elide-non-matching-messages)))
1029
1030     (setq notmuch-show-thread-id thread-id
1031           notmuch-show-parent-buffer parent-buffer
1032           notmuch-show-query-context query-context)
1033     (notmuch-show-build-buffer)
1034     (notmuch-show-goto-first-wanted-message)))
1035
1036 (defun notmuch-show-build-buffer ()
1037   (let ((inhibit-read-only t))
1038
1039     (notmuch-show-mode)
1040     ;; Don't track undo information for this buffer
1041     (set 'buffer-undo-list t)
1042
1043     (erase-buffer)
1044     (goto-char (point-min))
1045     (save-excursion
1046       (let* ((basic-args (list notmuch-show-thread-id))
1047              (args (if notmuch-show-query-context
1048                        (append (list "\'") basic-args
1049                                (list "and (" notmuch-show-query-context ")\'"))
1050                      (append (list "\'") basic-args (list "\'")))))
1051         (notmuch-show-insert-forest (notmuch-query-get-threads
1052                                      (cons "--exclude=false" args)))
1053         ;; If the query context reduced the results to nothing, run
1054         ;; the basic query.
1055         (when (and (eq (buffer-size) 0)
1056                    notmuch-show-query-context)
1057           (notmuch-show-insert-forest
1058            (notmuch-query-get-threads
1059             (cons "--exclude=false" basic-args)))))
1060
1061       (jit-lock-register #'notmuch-show-buttonise-links)
1062
1063       (run-hooks 'notmuch-show-hook))
1064
1065     ;; Set the header line to the subject of the first message.
1066     (setq header-line-format (notmuch-show-strip-re (notmuch-show-get-subject)))))
1067
1068 (defun notmuch-show-capture-state ()
1069   "Capture the state of the current buffer.
1070
1071 This includes:
1072  - the list of open messages,
1073  - the current message."
1074   (list (notmuch-show-get-message-id) (notmuch-show-get-message-ids-for-open-messages)))
1075
1076 (defun notmuch-show-apply-state (state)
1077   "Apply STATE to the current buffer.
1078
1079 This includes:
1080  - opening the messages previously opened,
1081  - closing all other messages,
1082  - moving to the correct current message."
1083   (let ((current (car state))
1084         (open (cadr state)))
1085
1086     ;; Open those that were open.
1087     (goto-char (point-min))
1088     (loop do (notmuch-show-message-visible (notmuch-show-get-message-properties)
1089                                            (member (notmuch-show-get-message-id) open))
1090           until (not (notmuch-show-goto-message-next)))
1091
1092     ;; Go to the previously open message.
1093     (goto-char (point-min))
1094     (unless (loop if (string= current (notmuch-show-get-message-id))
1095                   return t
1096                   until (not (notmuch-show-goto-message-next)))
1097       (goto-char (point-min))
1098       (message "Previously current message not found."))
1099     (notmuch-show-message-adjust)))
1100
1101 (defun notmuch-show-refresh-view (&optional reset-state)
1102   "Refresh the current view.
1103
1104 Refreshes the current view, observing changes in display
1105 preferences. If invoked with a prefix argument (or RESET-STATE is
1106 non-nil) then the state of the buffer (open/closed messages) is
1107 reset based on the original query."
1108   (interactive "P")
1109   (let ((inhibit-read-only t)
1110         (state (unless reset-state
1111                  (notmuch-show-capture-state))))
1112     (erase-buffer)
1113     (notmuch-show-build-buffer)
1114     (if state
1115         (notmuch-show-apply-state state)
1116       ;; We're resetting state, so navigate to the first open message
1117       ;; and mark it read, just like opening a new show buffer.
1118       (notmuch-show-goto-first-wanted-message))))
1119
1120 (defvar notmuch-show-stash-map
1121   (let ((map (make-sparse-keymap)))
1122     (define-key map "c" 'notmuch-show-stash-cc)
1123     (define-key map "d" 'notmuch-show-stash-date)
1124     (define-key map "F" 'notmuch-show-stash-filename)
1125     (define-key map "f" 'notmuch-show-stash-from)
1126     (define-key map "i" 'notmuch-show-stash-message-id)
1127     (define-key map "I" 'notmuch-show-stash-message-id-stripped)
1128     (define-key map "s" 'notmuch-show-stash-subject)
1129     (define-key map "T" 'notmuch-show-stash-tags)
1130     (define-key map "t" 'notmuch-show-stash-to)
1131     (define-key map "l" 'notmuch-show-stash-mlarchive-link)
1132     (define-key map "L" 'notmuch-show-stash-mlarchive-link-and-go)
1133     map)
1134   "Submap for stash commands")
1135 (fset 'notmuch-show-stash-map notmuch-show-stash-map)
1136
1137 (defvar notmuch-show-mode-map
1138       (let ((map (make-sparse-keymap)))
1139         (define-key map "?" 'notmuch-help)
1140         (define-key map "q" 'notmuch-kill-this-buffer)
1141         (define-key map (kbd "<C-tab>") 'widget-backward)
1142         (define-key map (kbd "M-TAB") 'notmuch-show-previous-button)
1143         (define-key map (kbd "<backtab>") 'notmuch-show-previous-button)
1144         (define-key map (kbd "TAB") 'notmuch-show-next-button)
1145         (define-key map "s" 'notmuch-search)
1146         (define-key map "m" 'notmuch-mua-new-mail)
1147         (define-key map "f" 'notmuch-show-forward-message)
1148         (define-key map "r" 'notmuch-show-reply-sender)
1149         (define-key map "R" 'notmuch-show-reply)
1150         (define-key map "|" 'notmuch-show-pipe-message)
1151         (define-key map "w" 'notmuch-show-save-attachments)
1152         (define-key map "V" 'notmuch-show-view-raw-message)
1153         (define-key map "v" 'notmuch-show-view-all-mime-parts)
1154         (define-key map "c" 'notmuch-show-stash-map)
1155         (define-key map "=" 'notmuch-show-refresh-view)
1156         (define-key map "h" 'notmuch-show-toggle-headers)
1157         (define-key map "*" 'notmuch-show-tag-all)
1158         (define-key map "-" 'notmuch-show-remove-tag)
1159         (define-key map "+" 'notmuch-show-add-tag)
1160         (define-key map "X" 'notmuch-show-archive-thread-then-exit)
1161         (define-key map "x" 'notmuch-show-archive-message-then-next-or-exit)
1162         (define-key map "A" 'notmuch-show-archive-thread-then-next)
1163         (define-key map "a" 'notmuch-show-archive-message-then-next-or-next-thread)
1164         (define-key map "N" 'notmuch-show-next-message)
1165         (define-key map "P" 'notmuch-show-previous-message)
1166         (define-key map "n" 'notmuch-show-next-open-message)
1167         (define-key map "p" 'notmuch-show-previous-open-message)
1168         (define-key map (kbd "DEL") 'notmuch-show-rewind)
1169         (define-key map " " 'notmuch-show-advance-and-archive)
1170         (define-key map (kbd "M-RET") 'notmuch-show-open-or-close-all)
1171         (define-key map (kbd "RET") 'notmuch-show-toggle-message)
1172         (define-key map "#" 'notmuch-show-print-message)
1173         (define-key map "!" 'notmuch-show-toggle-elide-non-matching)
1174         (define-key map "$" 'notmuch-show-toggle-process-crypto)
1175         (define-key map "<" 'notmuch-show-toggle-thread-indentation)
1176         (define-key map "t" 'toggle-truncate-lines)
1177         map)
1178       "Keymap for \"notmuch show\" buffers.")
1179 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
1180
1181 (defun notmuch-show-mode ()
1182   "Major mode for viewing a thread with notmuch.
1183
1184 This buffer contains the results of the \"notmuch show\" command
1185 for displaying a single thread of email from your email archives.
1186
1187 By default, various components of email messages, (citations,
1188 signatures, already-read messages), are hidden. You can make
1189 these parts visible by clicking with the mouse button or by
1190 pressing RET after positioning the cursor on a hidden part, (for
1191 which \\[notmuch-show-next-button] and \\[notmuch-show-previous-button] are helpful).
1192
1193 Reading the thread sequentially is well-supported by pressing
1194 \\[notmuch-show-advance-and-archive]. This will scroll the current message (if necessary), advance
1195 to the next message, or advance to the next thread (if already on
1196 the last message of a thread).
1197
1198 Other commands are available to read or manipulate the thread
1199 more selectively, (such as '\\[notmuch-show-next-message]' and '\\[notmuch-show-previous-message]' to advance to messages
1200 without removing any tags, and '\\[notmuch-show-archive-thread]' to archive an entire thread
1201 without scrolling through with \\[notmuch-show-advance-and-archive]).
1202
1203 You can add or remove arbitrary tags from the current message with
1204 '\\[notmuch-show-add-tag]' or '\\[notmuch-show-remove-tag]'.
1205
1206 All currently available key bindings:
1207
1208 \\{notmuch-show-mode-map}"
1209   (interactive)
1210   (kill-all-local-variables)
1211   (use-local-map notmuch-show-mode-map)
1212   (setq major-mode 'notmuch-show-mode
1213         mode-name "notmuch-show")
1214   (setq buffer-read-only t
1215         truncate-lines t))
1216
1217 (defun notmuch-show-move-to-message-top ()
1218   (goto-char (notmuch-show-message-top)))
1219
1220 (defun notmuch-show-move-to-message-bottom ()
1221   (goto-char (notmuch-show-message-bottom)))
1222
1223 (defun notmuch-show-message-adjust ()
1224   (recenter 0))
1225
1226 ;; Movement related functions.
1227
1228 ;; There's some strangeness here where a text property applied to a
1229 ;; region a->b is not found when point is at b. We walk backwards
1230 ;; until finding the property.
1231 (defun notmuch-show-message-extent ()
1232   (let (r)
1233     (save-excursion
1234       (while (not (setq r (get-text-property (point) :notmuch-message-extent)))
1235         (backward-char)))
1236     r))
1237
1238 (defun notmuch-show-message-top ()
1239   (car (notmuch-show-message-extent)))
1240
1241 (defun notmuch-show-message-bottom ()
1242   (cdr (notmuch-show-message-extent)))
1243
1244 (defun notmuch-show-goto-message-next ()
1245   (let ((start (point)))
1246     (notmuch-show-move-to-message-bottom)
1247     (if (not (eobp))
1248         t
1249       (goto-char start)
1250       nil)))
1251
1252 (defun notmuch-show-goto-message-previous ()
1253   (notmuch-show-move-to-message-top)
1254   (if (bobp)
1255       nil
1256     (backward-char)
1257     (notmuch-show-move-to-message-top)
1258     t))
1259
1260 (defun notmuch-show-mapc (function)
1261   "Iterate through all messages in the current thread with
1262 `notmuch-show-goto-message-next' and call FUNCTION for side
1263 effects."
1264   (save-excursion
1265     (goto-char (point-min))
1266     (loop do (funcall function)
1267           while (notmuch-show-goto-message-next))))
1268
1269 ;; Functions relating to the visibility of messages and their
1270 ;; components.
1271
1272 (defun notmuch-show-element-visible (props visible-p spec-property)
1273   (let ((spec (plist-get props spec-property)))
1274     (if visible-p
1275         (remove-from-invisibility-spec spec)
1276       (add-to-invisibility-spec spec))))
1277
1278 (defun notmuch-show-message-visible (props visible-p)
1279   (notmuch-show-element-visible props visible-p :message-invis-spec)
1280   (notmuch-show-set-prop :message-visible visible-p props))
1281
1282 (defun notmuch-show-headers-visible (props visible-p)
1283   (notmuch-show-element-visible props visible-p :headers-invis-spec)
1284   (notmuch-show-set-prop :headers-visible visible-p props))
1285
1286 ;; Functions for setting and getting attributes of the current
1287 ;; message.
1288
1289 (defun notmuch-show-set-message-properties (props)
1290   (save-excursion
1291     (notmuch-show-move-to-message-top)
1292     (put-text-property (point) (+ (point) 1) :notmuch-message-properties props)))
1293
1294 (defun notmuch-show-get-message-properties ()
1295   "Return the properties of the current message as a plist.
1296
1297 Some useful entries are:
1298 :headers - Property list containing the headers :Date, :Subject, :From, etc.
1299 :body - Body of the message
1300 :tags - Tags for this message"
1301   (save-excursion
1302     (notmuch-show-move-to-message-top)
1303     (get-text-property (point) :notmuch-message-properties)))
1304
1305 (defun notmuch-show-set-prop (prop val &optional props)
1306   (let ((inhibit-read-only t)
1307         (props (or props
1308                    (notmuch-show-get-message-properties))))
1309     (plist-put props prop val)
1310     (notmuch-show-set-message-properties props)))
1311
1312 (defun notmuch-show-get-prop (prop &optional props)
1313   (let ((props (or props
1314                    (notmuch-show-get-message-properties))))
1315     (plist-get props prop)))
1316
1317 (defun notmuch-show-get-message-id (&optional bare)
1318   "Return an id: query for the Message-Id of the current message.
1319
1320 If optional argument BARE is non-nil, return
1321 the Message-Id without id: prefix and escaping."
1322   (if bare
1323       (notmuch-show-get-prop :id)
1324     (notmuch-id-to-query (notmuch-show-get-prop :id))))
1325
1326 (defun notmuch-show-get-messages-ids ()
1327   "Return all id: queries of messages in the current thread."
1328   (let ((message-ids))
1329     (notmuch-show-mapc
1330      (lambda () (push (notmuch-show-get-message-id) message-ids)))
1331     message-ids))
1332
1333 (defun notmuch-show-get-messages-ids-search ()
1334   "Return a search string for all message ids of messages in the
1335 current thread."
1336   (mapconcat 'identity (notmuch-show-get-messages-ids) " or "))
1337
1338 ;; dme: Would it make sense to use a macro for many of these?
1339
1340 (defun notmuch-show-get-filename ()
1341   "Return the filename of the current message."
1342   (notmuch-show-get-prop :filename))
1343
1344 (defun notmuch-show-get-header (header &optional props)
1345   "Return the named header of the current message, if any."
1346   (plist-get (notmuch-show-get-prop :headers props) header))
1347
1348 (defun notmuch-show-get-cc ()
1349   (notmuch-show-get-header :Cc))
1350
1351 (defun notmuch-show-get-date ()
1352   (notmuch-show-get-header :Date))
1353
1354 (defun notmuch-show-get-from ()
1355   (notmuch-show-get-header :From))
1356
1357 (defun notmuch-show-get-subject ()
1358   (notmuch-show-get-header :Subject))
1359
1360 (defun notmuch-show-get-to ()
1361   (notmuch-show-get-header :To))
1362
1363 (defun notmuch-show-get-depth ()
1364   (notmuch-show-get-prop :depth))
1365
1366 (defun notmuch-show-set-tags (tags)
1367   "Set the tags of the current message."
1368   (notmuch-show-set-prop :tags tags)
1369   (notmuch-show-update-tags tags))
1370
1371 (defun notmuch-show-get-tags ()
1372   "Return the tags of the current message."
1373   (notmuch-show-get-prop :tags))
1374
1375 (defun notmuch-show-message-visible-p ()
1376   "Is the current message visible?"
1377   (notmuch-show-get-prop :message-visible))
1378
1379 (defun notmuch-show-headers-visible-p ()
1380   "Are the headers of the current message visible?"
1381   (notmuch-show-get-prop :headers-visible))
1382
1383 (defun notmuch-show-mark-read ()
1384   "Mark the current message as read."
1385   (notmuch-show-tag-message "-unread"))
1386
1387 ;; Functions for getting attributes of several messages in the current
1388 ;; thread.
1389
1390 (defun notmuch-show-get-message-ids-for-open-messages ()
1391   "Return a list of all id: queries for open messages in the current thread."
1392   (save-excursion
1393     (let (message-ids done)
1394       (goto-char (point-min))
1395       (while (not done)
1396         (if (notmuch-show-message-visible-p)
1397             (setq message-ids (append message-ids (list (notmuch-show-get-message-id)))))
1398         (setq done (not (notmuch-show-goto-message-next)))
1399         )
1400       message-ids
1401       )))
1402
1403 ;; Commands typically bound to keys.
1404
1405 (defun notmuch-show-advance ()
1406   "Advance through thread.
1407
1408 If the current message in the thread is not yet fully visible,
1409 scroll by a near screenful to read more of the message.
1410
1411 Otherwise, (the end of the current message is already within the
1412 current window), advance to the next open message."
1413   (interactive)
1414   (let* ((end-of-this-message (notmuch-show-message-bottom))
1415          (visible-end-of-this-message (1- end-of-this-message))
1416          (ret nil))
1417     (while (invisible-p visible-end-of-this-message)
1418       (setq visible-end-of-this-message
1419             (max (point-min)
1420                  (1- (previous-single-char-property-change
1421                       visible-end-of-this-message 'invisible)))))
1422     (cond
1423      ;; Ideally we would test `end-of-this-message' against the result
1424      ;; of `window-end', but that doesn't account for the fact that
1425      ;; the end of the message might be hidden.
1426      ((and visible-end-of-this-message
1427            (> visible-end-of-this-message (window-end)))
1428       ;; The bottom of this message is not visible - scroll.
1429       (scroll-up nil))
1430
1431      ((not (= end-of-this-message (point-max)))
1432       ;; This is not the last message - move to the next visible one.
1433       (notmuch-show-next-open-message))
1434
1435      ((not (= (point) (point-max)))
1436       ;; This is the last message, but the cursor is not at the end of
1437       ;; the buffer. Move it there.
1438       (goto-char (point-max)))
1439
1440      (t
1441       ;; This is the last message - change the return value
1442       (setq ret t)))
1443     ret))
1444
1445 (defun notmuch-show-advance-and-archive ()
1446   "Advance through thread and archive.
1447
1448 This command is intended to be one of the simplest ways to
1449 process a thread of email. It works exactly like
1450 notmuch-show-advance, in that it scrolls through messages in a
1451 show buffer, except that when it gets to the end of the buffer it
1452 archives the entire current thread, (remove the \"inbox\" tag
1453 from each message), kills the buffer, and displays the next
1454 thread from the search from which this thread was originally
1455 shown."
1456   (interactive)
1457   (if (notmuch-show-advance)
1458       (notmuch-show-archive-thread-then-next)))
1459
1460 (defun notmuch-show-rewind ()
1461   "Backup through the thread, (reverse scrolling compared to \\[notmuch-show-advance-and-archive]).
1462
1463 Specifically, if the beginning of the previous email is fewer
1464 than `window-height' lines from the current point, move to it
1465 just like `notmuch-show-previous-message'.
1466
1467 Otherwise, just scroll down a screenful of the current message.
1468
1469 This command does not modify any message tags, (it does not undo
1470 any effects from previous calls to
1471 `notmuch-show-advance-and-archive'."
1472   (interactive)
1473   (let ((start-of-message (notmuch-show-message-top))
1474         (start-of-window (window-start)))
1475     (cond
1476       ;; Either this message is properly aligned with the start of the
1477       ;; window or the start of this message is not visible on the
1478       ;; screen - scroll.
1479      ((or (= start-of-message start-of-window)
1480           (< start-of-message start-of-window))
1481       (scroll-down)
1482       ;; If a small number of lines from the previous message are
1483       ;; visible, realign so that the top of the current message is at
1484       ;; the top of the screen.
1485       (when (<= (count-screen-lines (window-start) start-of-message)
1486                 next-screen-context-lines)
1487         (goto-char (notmuch-show-message-top))
1488         (notmuch-show-message-adjust))
1489       ;; Move to the top left of the window.
1490       (goto-char (window-start)))
1491      (t
1492       ;; Move to the previous message.
1493       (notmuch-show-previous-message)))))
1494
1495 (defun notmuch-show-reply (&optional prompt-for-sender)
1496   "Reply to the sender and all recipients of the current message."
1497   (interactive "P")
1498   (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender t))
1499
1500 (defun notmuch-show-reply-sender (&optional prompt-for-sender)
1501   "Reply to the sender of the current message."
1502   (interactive "P")
1503   (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender nil))
1504
1505 (defun notmuch-show-forward-message (&optional prompt-for-sender)
1506   "Forward the current message."
1507   (interactive "P")
1508   (with-current-notmuch-show-message
1509    (notmuch-mua-new-forward-message prompt-for-sender)))
1510
1511 (defun notmuch-show-next-message (&optional pop-at-end)
1512   "Show the next message.
1513
1514 If a prefix argument is given and this is the last message in the
1515 thread, navigate to the next thread in the parent search buffer."
1516   (interactive "P")
1517   (if (notmuch-show-goto-message-next)
1518       (progn
1519         (notmuch-show-mark-read)
1520         (notmuch-show-message-adjust))
1521     (if pop-at-end
1522         (notmuch-show-next-thread)
1523       (goto-char (point-max)))))
1524
1525 (defun notmuch-show-previous-message ()
1526   "Show the previous message."
1527   (interactive)
1528   (notmuch-show-goto-message-previous)
1529   (notmuch-show-mark-read)
1530   (notmuch-show-message-adjust))
1531
1532 (defun notmuch-show-next-open-message (&optional pop-at-end)
1533   "Show the next open message.
1534
1535 If a prefix argument is given and this is the last open message
1536 in the thread, navigate to the next thread in the parent search
1537 buffer. Return t if there was a next open message in the thread
1538 to show, nil otherwise."
1539   (interactive "P")
1540   (let (r)
1541     (while (and (setq r (notmuch-show-goto-message-next))
1542                 (not (notmuch-show-message-visible-p))))
1543     (if r
1544         (progn
1545           (notmuch-show-mark-read)
1546           (notmuch-show-message-adjust))
1547       (if pop-at-end
1548           (notmuch-show-next-thread)
1549         (goto-char (point-max))))
1550     r))
1551
1552 (defun notmuch-show-next-matching-message ()
1553   "Show the next matching message."
1554   (interactive)
1555   (let (r)
1556     (while (and (setq r (notmuch-show-goto-message-next))
1557                 (not (notmuch-show-get-prop :match))))
1558     (if r
1559         (progn
1560           (notmuch-show-mark-read)
1561           (notmuch-show-message-adjust))
1562       (goto-char (point-max)))))
1563
1564 (defun notmuch-show-open-if-matched ()
1565   "Open a message if it is matched (whether or not excluded)."
1566   (let ((props (notmuch-show-get-message-properties)))
1567     (notmuch-show-message-visible props (plist-get props :match))))
1568
1569 (defun notmuch-show-goto-first-wanted-message ()
1570   "Move to the first open message and mark it read"
1571   (goto-char (point-min))
1572   (if (notmuch-show-message-visible-p)
1573       (notmuch-show-mark-read)
1574     (notmuch-show-next-open-message))
1575   (when (eobp)
1576     ;; There are no matched non-excluded messages so open all matched
1577     ;; (necessarily excluded) messages and go to the first.
1578     (notmuch-show-mapc 'notmuch-show-open-if-matched)
1579     (force-window-update)
1580     (goto-char (point-min))
1581     (if (notmuch-show-message-visible-p)
1582         (notmuch-show-mark-read)
1583       (notmuch-show-next-open-message))))
1584
1585 (defun notmuch-show-previous-open-message ()
1586   "Show the previous open message."
1587   (interactive)
1588   (while (and (notmuch-show-goto-message-previous)
1589               (not (notmuch-show-message-visible-p))))
1590   (notmuch-show-mark-read)
1591   (notmuch-show-message-adjust))
1592
1593 (defun notmuch-show-view-raw-message ()
1594   "View the file holding the current message."
1595   (interactive)
1596   (let* ((id (notmuch-show-get-message-id))
1597          (buf (get-buffer-create (concat "*notmuch-raw-" id "*"))))
1598     (call-process notmuch-command nil buf nil "show" "--format=raw" id)
1599     (switch-to-buffer buf)
1600     (goto-char (point-min))
1601     (set-buffer-modified-p nil)
1602     (view-buffer buf 'kill-buffer-if-not-modified)))
1603
1604 (defun notmuch-show-pipe-message (entire-thread command)
1605   "Pipe the contents of the current message (or thread) to the given command.
1606
1607 The given command will be executed with the raw contents of the
1608 current email message as stdin. Anything printed by the command
1609 to stdout or stderr will appear in the *notmuch-pipe* buffer.
1610
1611 When invoked with a prefix argument, the command will receive all
1612 open messages in the current thread (formatted as an mbox) rather
1613 than only the current message."
1614   (interactive "P\nsPipe message to command: ")
1615   (let (shell-command)
1616     (if entire-thread
1617         (setq shell-command
1618               (concat notmuch-command " show --format=mbox "
1619                       (shell-quote-argument
1620                        (mapconcat 'identity (notmuch-show-get-message-ids-for-open-messages) " OR "))
1621                       " | " command))
1622       (setq shell-command
1623             (concat notmuch-command " show --format=raw "
1624                     (shell-quote-argument (notmuch-show-get-message-id)) " | " command)))
1625     (let ((buf (get-buffer-create (concat "*notmuch-pipe*"))))
1626       (with-current-buffer buf
1627         (setq buffer-read-only nil)
1628         (erase-buffer)
1629         (let ((exit-code (call-process-shell-command shell-command nil buf)))
1630           (goto-char (point-max))
1631           (set-buffer-modified-p nil)
1632           (setq buffer-read-only t)
1633           (unless (zerop exit-code)
1634             (switch-to-buffer-other-window buf)
1635             (message (format "Command '%s' exited abnormally with code %d"
1636                              shell-command exit-code))))))))
1637
1638 (defun notmuch-show-tag-message (&rest tag-changes)
1639   "Change tags for the current message.
1640
1641 TAG-CHANGES is a list of tag operations for `notmuch-tag'."
1642   (let* ((current-tags (notmuch-show-get-tags))
1643          (new-tags (notmuch-update-tags current-tags tag-changes)))
1644     (unless (equal current-tags new-tags)
1645       (funcall 'notmuch-tag (notmuch-show-get-message-id) tag-changes)
1646       (notmuch-show-set-tags new-tags))))
1647
1648 (defun notmuch-show-tag (&optional tag-changes)
1649   "Change tags for the current message.
1650
1651 See `notmuch-tag' for information on the format of TAG-CHANGES."
1652   (interactive)
1653   (setq tag-changes (funcall 'notmuch-tag (notmuch-show-get-message-id) tag-changes))
1654   (let* ((current-tags (notmuch-show-get-tags))
1655          (new-tags (notmuch-update-tags current-tags tag-changes)))
1656     (unless (equal current-tags new-tags)
1657       (notmuch-show-set-tags new-tags))))
1658
1659 (defun notmuch-show-tag-all (&optional tag-changes)
1660   "Change tags for all messages in the current show buffer.
1661
1662 See `notmuch-tag' for information on the format of TAG-CHANGES."
1663   (interactive)
1664   (setq tag-changes (funcall 'notmuch-tag (notmuch-show-get-messages-ids-search) tag-changes))
1665   (notmuch-show-mapc
1666    (lambda ()
1667      (let* ((current-tags (notmuch-show-get-tags))
1668             (new-tags (notmuch-update-tags current-tags tag-changes)))
1669        (unless (equal current-tags new-tags)
1670          (notmuch-show-set-tags new-tags))))))
1671
1672 (defun notmuch-show-add-tag ()
1673   "Same as `notmuch-show-tag' but sets initial input to '+'."
1674   (interactive)
1675   (notmuch-show-tag "+"))
1676
1677 (defun notmuch-show-remove-tag ()
1678   "Same as `notmuch-show-tag' but sets initial input to '-'."
1679   (interactive)
1680   (notmuch-show-tag "-"))
1681
1682 (defun notmuch-show-toggle-headers ()
1683   "Toggle the visibility of the current message headers."
1684   (interactive)
1685   (let ((props (notmuch-show-get-message-properties)))
1686     (notmuch-show-headers-visible
1687      props
1688      (not (plist-get props :headers-visible))))
1689   (force-window-update))
1690
1691 (defun notmuch-show-toggle-message ()
1692   "Toggle the visibility of the current message."
1693   (interactive)
1694   (let ((props (notmuch-show-get-message-properties)))
1695     (notmuch-show-message-visible
1696      props
1697      (not (plist-get props :message-visible))))
1698   (force-window-update))
1699
1700 (defun notmuch-show-open-or-close-all ()
1701   "Set the visibility all of the messages in the current thread.
1702 By default make all of the messages visible. With a prefix
1703 argument, hide all of the messages."
1704   (interactive)
1705   (save-excursion
1706     (goto-char (point-min))
1707     (loop do (notmuch-show-message-visible (notmuch-show-get-message-properties)
1708                                            (not current-prefix-arg))
1709           until (not (notmuch-show-goto-message-next))))
1710   (force-window-update))
1711
1712 (defun notmuch-show-next-button ()
1713   "Advance point to the next button in the buffer."
1714   (interactive)
1715   (forward-button 1))
1716
1717 (defun notmuch-show-previous-button ()
1718   "Move point back to the previous button in the buffer."
1719   (interactive)
1720   (backward-button 1))
1721
1722 (defun notmuch-show-next-thread (&optional show-next)
1723   "Move to the next item in the search results, if any."
1724   (interactive "P")
1725   (let ((parent-buffer notmuch-show-parent-buffer))
1726     (notmuch-kill-this-buffer)
1727     (when (buffer-live-p parent-buffer)
1728       (switch-to-buffer parent-buffer)
1729       (notmuch-search-next-thread)
1730       (if show-next
1731           (notmuch-search-show-thread)))))
1732
1733 (defun notmuch-show-archive-thread (&optional unarchive)
1734   "Archive each message in thread.
1735
1736 Archive each message currently shown by removing the \"inbox\"
1737 tag from each.  If a prefix argument is given, the messages will
1738 be \"unarchived\" (ie. the \"inbox\" tag will be added instead of
1739 removed).
1740
1741 Note: This command is safe from any race condition of new messages
1742 being delivered to the same thread. It does not archive the
1743 entire thread, but only the messages shown in the current
1744 buffer."
1745   (interactive "P")
1746   (let ((op (if unarchive "+" "-")))
1747     (notmuch-show-tag-all (concat op "inbox"))))
1748
1749 (defun notmuch-show-archive-thread-then-next ()
1750   "Archive all messages in the current buffer, then show next thread from search."
1751   (interactive)
1752   (notmuch-show-archive-thread)
1753   (notmuch-show-next-thread t))
1754
1755 (defun notmuch-show-archive-thread-then-exit ()
1756   "Archive all messages in the current buffer, then exit back to search results."
1757   (interactive)
1758   (notmuch-show-archive-thread)
1759   (notmuch-show-next-thread))
1760
1761 (defun notmuch-show-archive-message (&optional unarchive)
1762   "Archive the current message (remove \"inbox\" tag).
1763
1764 If a prefix argument is given, the message will be
1765 \"unarchived\" (ie. the \"inbox\" tag will be added instead of
1766 removed)."
1767   (interactive "P")
1768   (let ((op (if unarchive "+" "-")))
1769     (notmuch-show-tag-message (concat op "inbox"))))
1770
1771 (defun notmuch-show-archive-message-then-next-or-exit ()
1772   "Archive the current message, then show the next open message in the current thread.
1773
1774 If at the last open message in the current thread, then exit back
1775 to search results."
1776   (interactive)
1777   (notmuch-show-archive-message)
1778   (notmuch-show-next-open-message t))
1779
1780 (defun notmuch-show-archive-message-then-next-or-next-thread ()
1781   "Archive the current message, then show the next open message in the current thread.
1782
1783 If at the last open message in the current thread, then show next
1784 thread from search."
1785   (interactive)
1786   (notmuch-show-archive-message)
1787   (unless (notmuch-show-next-open-message)
1788     (notmuch-show-next-thread t)))
1789
1790 (defun notmuch-show-stash-cc ()
1791   "Copy CC field of current message to kill-ring."
1792   (interactive)
1793   (notmuch-common-do-stash (notmuch-show-get-cc)))
1794
1795 (defun notmuch-show-stash-date ()
1796   "Copy date of current message to kill-ring."
1797   (interactive)
1798   (notmuch-common-do-stash (notmuch-show-get-date)))
1799
1800 (defun notmuch-show-stash-filename ()
1801   "Copy filename of current message to kill-ring."
1802   (interactive)
1803   (notmuch-common-do-stash (notmuch-show-get-filename)))
1804
1805 (defun notmuch-show-stash-from ()
1806   "Copy From address of current message to kill-ring."
1807   (interactive)
1808   (notmuch-common-do-stash (notmuch-show-get-from)))
1809
1810 (defun notmuch-show-stash-message-id ()
1811   "Copy id: query matching the current message to kill-ring."
1812   (interactive)
1813   (notmuch-common-do-stash (notmuch-show-get-message-id)))
1814
1815 (defun notmuch-show-stash-message-id-stripped ()
1816   "Copy message ID of current message (sans `id:' prefix) to kill-ring."
1817   (interactive)
1818   (notmuch-common-do-stash (notmuch-show-get-message-id t)))
1819
1820 (defun notmuch-show-stash-subject ()
1821   "Copy Subject field of current message to kill-ring."
1822   (interactive)
1823   (notmuch-common-do-stash (notmuch-show-get-subject)))
1824
1825 (defun notmuch-show-stash-tags ()
1826   "Copy tags of current message to kill-ring as a comma separated list."
1827   (interactive)
1828   (notmuch-common-do-stash (mapconcat 'identity (notmuch-show-get-tags) ",")))
1829
1830 (defun notmuch-show-stash-to ()
1831   "Copy To address of current message to kill-ring."
1832   (interactive)
1833   (notmuch-common-do-stash (notmuch-show-get-to)))
1834
1835 (defun notmuch-show-stash-mlarchive-link (&optional mla)
1836   "Copy an ML Archive URI for the current message to the kill-ring.
1837
1838 This presumes that the message is available at the selected Mailing List Archive.
1839
1840 If optional argument MLA is non-nil, use the provided key instead of prompting
1841 the user (see `notmuch-show-stash-mlarchive-link-alist')."
1842   (interactive)
1843   (notmuch-common-do-stash
1844    (concat (cdr (assoc
1845                  (or mla
1846                      (let ((completion-ignore-case t))
1847                        (completing-read
1848                         "Mailing List Archive: "
1849                         notmuch-show-stash-mlarchive-link-alist
1850                         nil t nil nil notmuch-show-stash-mlarchive-link-default)))
1851                  notmuch-show-stash-mlarchive-link-alist))
1852            (notmuch-show-get-message-id t))))
1853
1854 (defun notmuch-show-stash-mlarchive-link-and-go (&optional mla)
1855   "Copy an ML Archive URI for the current message to the kill-ring and visit it.
1856
1857 This presumes that the message is available at the selected Mailing List Archive.
1858
1859 If optional argument MLA is non-nil, use the provided key instead of prompting
1860 the user (see `notmuch-show-stash-mlarchive-link-alist')."
1861   (interactive)
1862   (notmuch-show-stash-mlarchive-link mla)
1863   (browse-url (current-kill 0 t)))
1864
1865 ;; Commands typically bound to buttons.
1866
1867 (defun notmuch-show-part-button-default (&optional button)
1868   (interactive)
1869   (notmuch-show-part-button-internal button notmuch-show-part-button-default-action))
1870
1871 (defun notmuch-show-part-button-save (&optional button)
1872   (interactive)
1873   (notmuch-show-part-button-internal button #'notmuch-show-save-part))
1874
1875 (defun notmuch-show-part-button-view (&optional button)
1876   (interactive)
1877   (notmuch-show-part-button-internal button #'notmuch-show-view-part))
1878
1879 (defun notmuch-show-part-button-interactively-view (&optional button)
1880   (interactive)
1881   (notmuch-show-part-button-internal button #'notmuch-show-interactively-view-part))
1882
1883 (defun notmuch-show-part-button-pipe (&optional button)
1884   (interactive)
1885   (notmuch-show-part-button-internal button #'notmuch-show-pipe-part))
1886
1887 (defun notmuch-show-part-button-internal (button handler)
1888   (let ((button (or button (button-at (point)))))
1889     (if button
1890         (let ((nth (button-get button :notmuch-part)))
1891           (if nth
1892               (funcall handler (notmuch-show-get-message-id) nth
1893                        (button-get button :notmuch-filename)
1894                        (button-get button :notmuch-content-type)))))))
1895
1896 ;;
1897
1898 (provide 'notmuch-show)