]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-show.el
emacs: Improve the acquisition of text parts.
[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-search-next-thread "notmuch" nil)
42 (declare-function notmuch-search-previous-thread "notmuch" nil)
43 (declare-function notmuch-search-show-thread "notmuch" nil)
44 (declare-function notmuch-foreach-mime-part "notmuch" (function mm-handle))
45 (declare-function notmuch-count-attachments "notmuch" (mm-handle))
46 (declare-function notmuch-save-attachments "notmuch" (mm-handle &optional queryp))
47 (declare-function notmuch-tree "notmuch-tree"
48                   (&optional query query-context target buffer-name open-target))
49 (declare-function notmuch-tree-get-message-properties "notmuch-tree" nil)
50 (declare-function notmuch-read-query "notmuch" (prompt))
51
52 (defcustom notmuch-message-headers '("Subject" "To" "Cc" "Date")
53   "Headers that should be shown in a message, in this order.
54
55 For an open message, all of these headers will be made visible
56 according to `notmuch-message-headers-visible' or can be toggled
57 with `notmuch-show-toggle-visibility-headers'. For a closed message,
58 only the first header in the list will be visible."
59   :type '(repeat string)
60   :group 'notmuch-show)
61
62 (defcustom notmuch-message-headers-visible t
63   "Should the headers be visible by default?
64
65 If this value is non-nil, then all of the headers defined in
66 `notmuch-message-headers' will be visible by default in the display
67 of each message. Otherwise, these headers will be hidden and
68 `notmuch-show-toggle-visibility-headers' can be used to make them
69 visible for any given message."
70   :type 'boolean
71   :group 'notmuch-show)
72
73 (defcustom notmuch-show-relative-dates t
74   "Display relative dates in the message summary line."
75   :type 'boolean
76   :group 'notmuch-show)
77
78 (defvar notmuch-show-markup-headers-hook '(notmuch-show-colour-headers)
79   "A list of functions called to decorate the headers listed in
80 `notmuch-message-headers'.")
81
82 (defcustom notmuch-show-hook '(notmuch-show-turn-on-visual-line-mode)
83   "Functions called after populating a `notmuch-show' buffer."
84   :type 'hook
85   :options '(notmuch-show-turn-on-visual-line-mode)
86   :group 'notmuch-show
87   :group 'notmuch-hooks)
88
89 (defcustom notmuch-show-insert-text/plain-hook '(notmuch-wash-wrap-long-lines
90                                                  notmuch-wash-tidy-citations
91                                                  notmuch-wash-elide-blank-lines
92                                                  notmuch-wash-excerpt-citations)
93   "Functions used to improve the display of text/plain parts."
94   :type 'hook
95   :options '(notmuch-wash-convert-inline-patch-to-part
96              notmuch-wash-wrap-long-lines
97              notmuch-wash-tidy-citations
98              notmuch-wash-elide-blank-lines
99              notmuch-wash-excerpt-citations)
100   :group 'notmuch-show
101   :group 'notmuch-hooks)
102
103 (defcustom notmuch-show-max-text-part-size 100000
104   "Maximum size of a text part to be shown by default in characters.
105
106 Set to 0 to show the part regardless of size."
107   :type 'integer
108   :group 'notmuch-show)
109
110 ;; Mostly useful for debugging.
111 (defcustom notmuch-show-all-multipart/alternative-parts nil
112   "Should all parts of multipart/alternative parts be shown?"
113   :type 'boolean
114   :group 'notmuch-show)
115
116 (defcustom notmuch-show-indent-messages-width 1
117   "Width of message indentation in threads.
118
119 Messages are shown indented according to their depth in a thread.
120 This variable determines the width of this indentation measured
121 in number of blanks.  Defaults to `1', choose `0' to disable
122 indentation."
123   :type 'integer
124   :group 'notmuch-show)
125
126 (defcustom notmuch-show-indent-multipart nil
127   "Should the sub-parts of a multipart/* part be indented?"
128   ;; dme: Not sure which is a good default.
129   :type 'boolean
130   :group 'notmuch-show)
131
132 (defcustom notmuch-show-part-button-default-action 'notmuch-show-save-part
133   "Default part header button action (on ENTER or mouse click)."
134   :group 'notmuch-show
135   :type '(choice (const :tag "Save part"
136                         notmuch-show-save-part)
137                  (const :tag "View part"
138                         notmuch-show-view-part)
139                  (const :tag "View interactively"
140                         notmuch-show-interactively-view-part)))
141
142 (defcustom notmuch-show-only-matching-messages nil
143   "Only matching messages are shown by default."
144   :type 'boolean
145   :group 'notmuch-show)
146
147 ;; By default, block all external images to prevent privacy leaks and
148 ;; potential attacks.
149 (defcustom notmuch-show-text/html-blocked-images "."
150   "Remote images that have URLs matching this regexp will be blocked."
151   :type '(choice (const nil) regexp)
152   :group 'notmuch-show)
153
154 (defvar notmuch-show-thread-id nil)
155 (make-variable-buffer-local 'notmuch-show-thread-id)
156
157 (defvar notmuch-show-parent-buffer nil)
158 (make-variable-buffer-local 'notmuch-show-parent-buffer)
159
160 (defvar notmuch-show-query-context nil)
161 (make-variable-buffer-local 'notmuch-show-query-context)
162
163 (defvar notmuch-show-process-crypto nil)
164 (make-variable-buffer-local 'notmuch-show-process-crypto)
165
166 (defvar notmuch-show-elide-non-matching-messages nil)
167 (make-variable-buffer-local 'notmuch-show-elide-non-matching-messages)
168
169 (defvar notmuch-show-indent-content t)
170 (make-variable-buffer-local 'notmuch-show-indent-content)
171
172 (defvar notmuch-show-attachment-debug nil
173   "If t log stdout and stderr from attachment handlers
174
175 When set to nil (the default) stdout and stderr from attachment
176 handlers is discarded. When set to t the stdout and stderr from
177 each attachment handler is logged in buffers with names beginning
178 \" *notmuch-part*\". This option requires emacs version at least
179 24.3 to work.")
180
181 (defcustom notmuch-show-stash-mlarchive-link-alist
182   '(("Gmane" . "http://mid.gmane.org/")
183     ("MARC" . "http://marc.info/?i=")
184     ("Mail Archive, The" . "http://mid.mail-archive.com/")
185     ("LKML" . "http://lkml.kernel.org/r/")
186     ;; FIXME: can these services be searched by `Message-Id' ?
187     ;; ("MarkMail" . "http://markmail.org/")
188     ;; ("Nabble" . "http://nabble.com/")
189     ;; ("opensubscriber" . "http://opensubscriber.com/")
190     )
191   "List of Mailing List Archives to use when stashing links.
192
193 This list is used for generating a Mailing List Archive reference
194 URI with the current message's Message-Id in
195 `notmuch-show-stash-mlarchive-link'.
196
197 If the cdr of the alist element is not a function, the cdr is
198 expected to contain a URI that is concatenated with the current
199 message's Message-Id to create a ML archive reference URI.
200
201 If the cdr is a function, the function is called with the
202 Message-Id as the argument, and the function is expected to
203 return the ML archive reference URI."
204   :type '(alist :key-type (string :tag "Name")
205                 :value-type (choice
206                              (string :tag "URL")
207                              (function :tag "Function returning the URL")))
208   :group 'notmuch-show)
209
210 (defcustom notmuch-show-stash-mlarchive-link-default "Gmane"
211   "Default Mailing List Archive to use when stashing links.
212
213 This is used when `notmuch-show-stash-mlarchive-link' isn't
214 provided with an MLA argument nor `completing-read' input."
215   :type `(choice
216           ,@(mapcar
217              (lambda (mla)
218                (list 'const :tag (car mla) :value (car mla)))
219              notmuch-show-stash-mlarchive-link-alist))
220   :group 'notmuch-show)
221
222 (defcustom notmuch-show-mark-read-tags '("-unread")
223   "List of tag changes to apply to a message when it is marked as read.
224
225 Tags starting with \"+\" (or not starting with either \"+\" or
226 \"-\") in the list will be added, and tags starting with \"-\"
227 will be removed from the message being marked as read.
228
229 For example, if you wanted to remove an \"unread\" tag and add a
230 \"read\" tag (which would make little sense), you would set:
231     (\"-unread\" \"+read\")"
232   :type '(repeat string)
233   :group 'notmuch-show)
234
235 (defcustom notmuch-show-mark-read-function #'notmuch-show-seen-current-message
236   "Function to control which messages are marked read.
237
238 The function should take two arguments START and END which will
239 be the start and end of the visible portion of the buffer and
240 should mark the appropriate messages read by applying
241 `notmuch-show-mark-read'. This function will be called after
242 every user interaction with notmuch."
243   :type 'function
244   :group 'notmuch-show)
245
246 (defmacro with-current-notmuch-show-message (&rest body)
247   "Evaluate body with current buffer set to the text of current message"
248   `(save-excursion
249      (let ((id (notmuch-show-get-message-id)))
250        (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*"))))
251          (with-current-buffer buf
252            (let ((coding-system-for-read 'no-conversion))
253              (call-process notmuch-command nil t nil "show" "--format=raw" id))
254            ,@body)
255          (kill-buffer buf)))))
256
257 (defun notmuch-show-turn-on-visual-line-mode ()
258   "Enable Visual Line mode."
259   (visual-line-mode t))
260
261 ;; DEPRECATED in Notmuch 0.16 since we now have convenient part
262 ;; commands.  We'll keep the command around for a version or two in
263 ;; case people want to bind it themselves.
264 (defun notmuch-show-view-all-mime-parts ()
265   "Use external viewers to view all attachments from the current message."
266   (interactive)
267   (with-current-notmuch-show-message
268    ;; We override the mm-inline-media-tests to indicate which message
269    ;; parts are already sufficiently handled by the original
270    ;; presentation of the message in notmuch-show mode. These parts
271    ;; will be inserted directly into the temporary buffer of
272    ;; with-current-notmuch-show-message and silently discarded.
273    ;;
274    ;; Any MIME part not explicitly mentioned here will be handled by an
275    ;; external viewer as configured in the various mailcap files.
276    (let ((mm-inline-media-tests '(
277                                   ("text/.*" ignore identity)
278                                   ("application/pgp-signature" ignore identity)
279                                   ("multipart/alternative" ignore identity)
280                                   ("multipart/mixed" ignore identity)
281                                   ("multipart/related" ignore identity)
282                                  )))
283      (mm-display-parts (mm-dissect-buffer)))))
284
285 (defun notmuch-show-save-attachments ()
286   "Save all attachments from the current message."
287   (interactive)
288   (with-current-notmuch-show-message
289    (let ((mm-handle (mm-dissect-buffer)))
290      (notmuch-save-attachments
291       mm-handle (> (notmuch-count-attachments mm-handle) 1))))
292   (message "Done"))
293
294 (defun notmuch-show-with-message-as-text (fn)
295   "Apply FN to a text representation of the current message.
296
297 FN is called with one argument, the message properties. It should
298 operation on the contents of the current buffer."
299
300   ;; Remake the header to ensure that all information is available.
301   (let* ((to (notmuch-show-get-to))
302          (cc (notmuch-show-get-cc))
303          (from (notmuch-show-get-from))
304          (subject (notmuch-show-get-subject))
305          (date (notmuch-show-get-date))
306          (tags (notmuch-show-get-tags))
307          (depth (notmuch-show-get-depth))
308
309          (header (concat
310                   "Subject: " subject "\n"
311                   "To: " to "\n"
312                   (if (not (string= cc ""))
313                       (concat "Cc: " cc "\n")
314                     "")
315                   "From: " from "\n"
316                   "Date: " date "\n"
317                   (if tags
318                       (concat "Tags: "
319                               (mapconcat #'identity tags ", ") "\n")
320                     "")))
321          (all (buffer-substring (notmuch-show-message-top)
322                                 (notmuch-show-message-bottom)))
323
324          (props (notmuch-show-get-message-properties))
325          (indenting notmuch-show-indent-content))
326     (with-temp-buffer
327       (insert all)
328       (if indenting
329           (indent-rigidly (point-min) (point-max) (- depth)))
330       ;; Remove the original header.
331       (goto-char (point-min))
332       (re-search-forward "^$" (point-max) nil)
333       (delete-region (point-min) (point))
334       (insert header)
335       (funcall fn props))))
336
337 (defun notmuch-show-print-message ()
338   "Print the current message."
339   (interactive)
340   (notmuch-show-with-message-as-text 'notmuch-print-message))
341
342 (defun notmuch-show-fontify-header ()
343   (let ((face (cond
344                ((looking-at "[Tt]o:")
345                 'message-header-to)
346                ((looking-at "[Bb]?[Cc][Cc]:")
347                 'message-header-cc)
348                ((looking-at "[Ss]ubject:")
349                 'message-header-subject)
350                (t
351                 'message-header-other))))
352
353     (overlay-put (make-overlay (point) (re-search-forward ":"))
354                  'face 'message-header-name)
355     (overlay-put (make-overlay (point) (re-search-forward ".*$"))
356                  'face face)))
357
358 (defun notmuch-show-colour-headers ()
359   "Apply some colouring to the current headers."
360   (goto-char (point-min))
361   (while (looking-at "^[A-Za-z][-A-Za-z0-9]*:")
362     (notmuch-show-fontify-header)
363     (forward-line)))
364
365 (defun notmuch-show-spaces-n (n)
366   "Return a string comprised of `n' spaces."
367   (make-string n ? ))
368
369 (defun notmuch-show-update-tags (tags)
370   "Update the displayed tags of the current message."
371   (save-excursion
372     (goto-char (notmuch-show-message-top))
373     (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t)
374         (let ((inhibit-read-only t))
375           (replace-match (concat "("
376                                  (notmuch-tag-format-tags tags (notmuch-show-get-prop :orig-tags))
377                                  ")"))))))
378
379 (defun notmuch-clean-address (address)
380   "Try to clean a single email ADDRESS for display. Return a cons
381 cell of (AUTHOR_EMAIL AUTHOR_NAME). Return (ADDRESS nil) if
382 parsing fails."
383   (condition-case nil
384     (let (p-name p-address)
385       ;; It would be convenient to use `mail-header-parse-address',
386       ;; but that expects un-decoded mailbox parts, whereas our
387       ;; mailbox parts are already decoded (and hence may contain
388       ;; UTF-8). Given that notmuch should handle most of the awkward
389       ;; cases, some simple string deconstruction should be sufficient
390       ;; here.
391       (cond
392        ;; "User <user@dom.ain>" style.
393        ((string-match "\\(.*\\) <\\(.*\\)>" address)
394         (setq p-name (match-string 1 address)
395               p-address (match-string 2 address)))
396
397        ;; "<user@dom.ain>" style.
398        ((string-match "<\\(.*\\)>" address)
399         (setq p-address (match-string 1 address)))
400
401        ;; Everything else.
402        (t
403         (setq p-address address)))
404
405       (when p-name
406         ;; Remove elements of the mailbox part that are not relevant for
407         ;; display, even if they are required during transport:
408         ;;
409         ;; Backslashes.
410         (setq p-name (replace-regexp-in-string "\\\\" "" p-name))
411
412         ;; Outer single and double quotes, which might be nested.
413         (loop
414          with start-of-loop
415          do (setq start-of-loop p-name)
416
417          when (string-match "^\"\\(.*\\)\"$" p-name)
418          do (setq p-name (match-string 1 p-name))
419
420          when (string-match "^'\\(.*\\)'$" p-name)
421          do (setq p-name (match-string 1 p-name))
422
423          until (string= start-of-loop p-name)))
424
425       ;; If the address is 'foo@bar.com <foo@bar.com>' then show just
426       ;; 'foo@bar.com'.
427       (when (string= p-name p-address)
428         (setq p-name nil))
429
430       (cons p-address p-name))
431     (error (cons address nil))))
432
433 (defun notmuch-show-clean-address (address)
434   "Try to clean a single email ADDRESS for display.  Return
435 unchanged ADDRESS if parsing fails."
436   (let* ((clean-address (notmuch-clean-address address))
437          (p-address (car clean-address))
438          (p-name (cdr clean-address)))
439     ;; If no name, return just the address.
440     (if (not p-name)
441         p-address
442       ;; Otherwise format the name and address together.
443       (concat p-name " <" p-address ">"))))
444
445 (defun notmuch-show-insert-headerline (headers date tags depth)
446   "Insert a notmuch style headerline based on HEADERS for a
447 message at DEPTH in the current thread."
448   (let ((start (point)))
449     (insert (notmuch-show-spaces-n (* notmuch-show-indent-messages-width depth))
450             (notmuch-sanitize
451              (notmuch-show-clean-address (plist-get headers :From)))
452             " ("
453             date
454             ") ("
455             (notmuch-tag-format-tags tags tags)
456             ")\n")
457     (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face)))
458
459 (defun notmuch-show-insert-header (header header-value)
460   "Insert a single header."
461   (insert header ": " (notmuch-sanitize header-value) "\n"))
462
463 (defun notmuch-show-insert-headers (headers)
464   "Insert the headers of the current message."
465   (let ((start (point)))
466     (mapc (lambda (header)
467             (let* ((header-symbol (intern (concat ":" header)))
468                    (header-value (plist-get headers header-symbol)))
469               (if (and header-value
470                        (not (string-equal "" header-value)))
471                   (notmuch-show-insert-header header header-value))))
472           notmuch-message-headers)
473     (save-excursion
474       (save-restriction
475         (narrow-to-region start (point-max))
476         (run-hooks 'notmuch-show-markup-headers-hook)))))
477
478 (define-button-type 'notmuch-show-part-button-type
479   'action 'notmuch-show-part-button-default
480   'follow-link t
481   'face 'message-mml
482   :supertype 'notmuch-button-type)
483
484 (defun notmuch-show-insert-part-header (nth content-type declared-type &optional name comment)
485   (let ((button)
486         (base-label (concat (when name (concat name ": "))
487                             declared-type
488                             (unless (string-equal declared-type content-type)
489                               (concat " (as " content-type ")"))
490                             comment)))
491
492     (setq button
493           (insert-button
494            (concat "[ " base-label " ]")
495            :base-label base-label
496            :type 'notmuch-show-part-button-type
497            :notmuch-part-hidden nil))
498     (insert "\n")
499     ;; return button
500     button))
501
502 (defun notmuch-show-toggle-part-invisibility (&optional button)
503   (interactive)
504   (let ((button (or button (button-at (point)))))
505     (when button
506       (let ((overlay (button-get button 'overlay))
507             (lazy-part (button-get button :notmuch-lazy-part)))
508         ;; We have a part to toggle if there is an overlay or if there is a lazy part.
509         ;; If neither is present we cannot toggle the part so we just return nil.
510         (when (or overlay lazy-part)
511           (let* ((show (button-get button :notmuch-part-hidden))
512                  (new-start (button-start button))
513                  (button-label (button-get button :base-label))
514                  (old-point (point))
515                  (properties (text-properties-at (button-start button)))
516                  (inhibit-read-only t))
517             ;; Toggle the button itself.
518             (button-put button :notmuch-part-hidden (not show))
519             (goto-char new-start)
520             (insert "[ " button-label (if show " ]" " (hidden) ]"))
521             (set-text-properties new-start (point) properties)
522             (let ((old-end (button-end button)))
523               (move-overlay button new-start (point))
524               (delete-region (point) old-end))
525             (goto-char (min old-point (1- (button-end button))))
526             ;; Return nil if there is a lazy-part, it is empty, and we are
527             ;; trying to show it.  In all other cases return t.
528             (if lazy-part
529                 (when show
530                   (button-put button :notmuch-lazy-part nil)
531                   (notmuch-show-lazy-part lazy-part button))
532               ;; else there must be an overlay.
533               (overlay-put overlay 'invisible (not show))
534               t)))))))
535
536 ;; Part content ID handling
537
538 (defvar notmuch-show--cids nil
539   "Alist from raw content ID to (MSG PART).")
540 (make-variable-buffer-local 'notmuch-show--cids)
541
542 (defun notmuch-show--register-cids (msg part)
543   "Register content-IDs in PART and all of PART's sub-parts."
544   (let ((content-id (plist-get part :content-id)))
545     (when content-id
546       ;; Note that content-IDs are globally unique, except when they
547       ;; aren't: RFC 2046 section 5.1.4 permits children of a
548       ;; multipart/alternative to have the same content-ID, in which
549       ;; case the MUA is supposed to pick the best one it can render.
550       ;; We simply add the content-ID to the beginning of our alist;
551       ;; so if this happens, we'll take the last (and "best")
552       ;; alternative (even if we can't render it).
553       (push (list content-id msg part) notmuch-show--cids)))
554   ;; Recurse on sub-parts
555   (let ((ctype (notmuch-split-content-type
556                 (downcase (plist-get part :content-type)))))
557     (cond ((equal (first ctype) "multipart")
558            (mapc (apply-partially #'notmuch-show--register-cids msg)
559                  (plist-get part :content)))
560           ((equal ctype '("message" "rfc822"))
561            (notmuch-show--register-cids
562             msg
563             (first (plist-get (first (plist-get part :content)) :body)))))))
564
565 (defun notmuch-show--get-cid-content (cid)
566   "Return a list (CID-content content-type) or nil.
567
568 This will only find parts from messages that have been inserted
569 into the current buffer.  CID must be a raw content ID, without
570 enclosing angle brackets, a cid: prefix, or URL encoding.  This
571 will return nil if the CID is unknown or cannot be retrieved."
572   (let ((descriptor (cdr (assoc cid notmuch-show--cids))))
573     (when descriptor
574       (let* ((msg (first descriptor))
575              (part (second descriptor))
576              ;; Request caching for this content, as some messages
577              ;; reference the same cid: part many times (hundreds!).
578              (content (notmuch-get-bodypart-binary
579                        msg part notmuch-show-process-crypto 'cache))
580              (content-type (plist-get part :content-type)))
581         (list content content-type)))))
582
583 (defun notmuch-show-setup-w3m ()
584   "Instruct w3m how to retrieve content from a \"related\" part of a message."
585   (interactive)
586   (if (boundp 'w3m-cid-retrieve-function-alist)
587     (unless (assq 'notmuch-show-mode w3m-cid-retrieve-function-alist)
588       (push (cons 'notmuch-show-mode #'notmuch-show--cid-w3m-retrieve)
589             w3m-cid-retrieve-function-alist)))
590   (setq mm-inline-text-html-with-images t))
591
592 (defvar w3m-current-buffer) ;; From `w3m.el'.
593 (defun notmuch-show--cid-w3m-retrieve (url &rest args)
594   ;; url includes the cid: prefix and is URL encoded (see RFC 2392).
595   (let* ((cid (url-unhex-string (substring url 4)))
596          (content-and-type
597           (with-current-buffer w3m-current-buffer
598             (notmuch-show--get-cid-content cid))))
599     (when content-and-type
600       (insert (first content-and-type))
601       (second content-and-type))))
602
603 ;; MIME part renderers
604
605 (defun notmuch-show-multipart/*-to-list (part)
606   (mapcar (lambda (inner-part) (plist-get inner-part :content-type))
607           (plist-get part :content)))
608
609 (defun notmuch-show-insert-part-multipart/alternative (msg part content-type nth depth button)
610   (let ((chosen-type (car (notmuch-multipart/alternative-choose (notmuch-show-multipart/*-to-list part))))
611         (inner-parts (plist-get part :content))
612         (start (point)))
613     ;; This inserts all parts of the chosen type rather than just one,
614     ;; but it's not clear that this is the wrong thing to do - which
615     ;; should be chosen if there are more than one that match?
616     (mapc (lambda (inner-part)
617             (let* ((inner-type (plist-get inner-part :content-type))
618                   (hide (not (or notmuch-show-all-multipart/alternative-parts
619                            (string= chosen-type inner-type)))))
620               (notmuch-show-insert-bodypart msg inner-part depth hide)))
621           inner-parts)
622
623     (when notmuch-show-indent-multipart
624       (indent-rigidly start (point) 1)))
625   t)
626
627 (defun notmuch-show-insert-part-multipart/related (msg part content-type nth depth button)
628   (let ((inner-parts (plist-get part :content))
629         (start (point)))
630
631     ;; Render the primary part.  FIXME: Support RFC 2387 Start header.
632     (notmuch-show-insert-bodypart msg (car inner-parts) depth)
633     ;; Add hidden buttons for the rest
634     (mapc (lambda (inner-part)
635             (notmuch-show-insert-bodypart msg inner-part depth t))
636           (cdr inner-parts))
637
638     (when notmuch-show-indent-multipart
639       (indent-rigidly start (point) 1)))
640   t)
641
642 (defun notmuch-show-insert-part-multipart/signed (msg part content-type nth depth button)
643   (when button
644     (button-put button 'face 'notmuch-crypto-part-header))
645   ;; Add signature status button if sigstatus provided.
646   (if (plist-member part :sigstatus)
647       (let* ((from (notmuch-show-get-header :From msg))
648              (sigstatus (car (plist-get part :sigstatus))))
649         (notmuch-crypto-insert-sigstatus-button sigstatus from))
650     ;; If we're not adding the signature status, tell the user how
651     ;; they can get it.
652     (when button
653       (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic MIME parts.")))
654
655   (let ((inner-parts (plist-get part :content))
656         (start (point)))
657     ;; Show all of the parts.
658     (mapc (lambda (inner-part)
659             (notmuch-show-insert-bodypart msg inner-part depth))
660           inner-parts)
661
662     (when notmuch-show-indent-multipart
663       (indent-rigidly start (point) 1)))
664   t)
665
666 (defun notmuch-show-insert-part-multipart/encrypted (msg part content-type nth depth button)
667   (when button
668     (button-put button 'face 'notmuch-crypto-part-header))
669   ;; Add encryption status button if encryption status is specified.
670   (if (plist-member part :encstatus)
671       (let ((encstatus (car (plist-get part :encstatus))))
672         (notmuch-crypto-insert-encstatus-button encstatus)
673         ;; Add signature status button if signature status is
674         ;; specified.
675         (if (plist-member part :sigstatus)
676             (let* ((from (notmuch-show-get-header :From msg))
677                    (sigstatus (car (plist-get part :sigstatus))))
678               (notmuch-crypto-insert-sigstatus-button sigstatus from))))
679     ;; If we're not adding the encryption status, tell the user how
680     ;; they can get it.
681     (when button
682       (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic MIME parts.")))
683
684   (let ((inner-parts (plist-get part :content))
685         (start (point)))
686     ;; Show all of the parts.
687     (mapc (lambda (inner-part)
688             (notmuch-show-insert-bodypart msg inner-part depth))
689           inner-parts)
690
691     (when notmuch-show-indent-multipart
692       (indent-rigidly start (point) 1)))
693   t)
694
695 (defun notmuch-show-insert-part-multipart/* (msg part content-type nth depth button)
696   (let ((inner-parts (plist-get part :content))
697         (start (point)))
698     ;; Show all of the parts.
699     (mapc (lambda (inner-part)
700             (notmuch-show-insert-bodypart msg inner-part depth))
701           inner-parts)
702
703     (when notmuch-show-indent-multipart
704       (indent-rigidly start (point) 1)))
705   t)
706
707 (defun notmuch-show-insert-part-message/rfc822 (msg part content-type nth depth button)
708   (let* ((message (car (plist-get part :content)))
709          (body (car (plist-get message :body)))
710          (start (point)))
711
712     ;; Override `notmuch-message-headers' to force `From' to be
713     ;; displayed.
714     (let ((notmuch-message-headers '("From" "Subject" "To" "Cc" "Date")))
715       (notmuch-show-insert-headers (plist-get message :headers)))
716
717     ;; Blank line after headers to be compatible with the normal
718     ;; message display.
719     (insert "\n")
720
721     ;; Show the body
722     (notmuch-show-insert-bodypart msg body depth)
723
724     (when notmuch-show-indent-multipart
725       (indent-rigidly start (point) 1)))
726   t)
727
728 (defun notmuch-show-insert-part-text/plain (msg part content-type nth depth button)
729   ;; For backward compatibility we want to apply the text/plain hook
730   ;; to the whole of the part including the part button if there is
731   ;; one.
732   (let ((start (if button
733                    (button-start button)
734                  (point))))
735     (insert (notmuch-get-bodypart-text msg part notmuch-show-process-crypto))
736     (save-excursion
737       (save-restriction
738         (narrow-to-region start (point-max))
739         (run-hook-with-args 'notmuch-show-insert-text/plain-hook msg depth))))
740   t)
741
742 (defun notmuch-show-insert-part-text/calendar (msg part content-type nth depth button)
743   (insert (with-temp-buffer
744             (insert (notmuch-get-bodypart-text msg part notmuch-show-process-crypto))
745             ;; notmuch-get-bodypart-text does no newline conversion.
746             ;; Replace CRLF with LF before icalendar can use it.
747             (goto-char (point-min))
748             (while (re-search-forward "\r\n" nil t)
749               (replace-match "\n" nil nil))
750             (let ((file (make-temp-file "notmuch-ical"))
751                   result)
752               (unwind-protect
753                   (progn
754                     (unless (icalendar-import-buffer file t)
755                       (error "Icalendar import error. See *icalendar-errors* for more information"))
756                     (set-buffer (get-file-buffer file))
757                     (setq result (buffer-substring (point-min) (point-max)))
758                     (set-buffer-modified-p nil)
759                     (kill-buffer (current-buffer)))
760                 (delete-file file))
761               result)))
762   t)
763
764 ;; For backwards compatibility.
765 (defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth button)
766   (notmuch-show-insert-part-text/calendar msg part content-type nth depth button))
767
768 (defun notmuch-show-get-mime-type-of-application/octet-stream (part)
769   ;; If we can deduce a MIME type from the filename of the attachment,
770   ;; we return that.
771   (if (plist-get part :filename)
772       (let ((extension (file-name-extension (plist-get part :filename)))
773             mime-type)
774         (if extension
775             (progn
776               (mailcap-parse-mimetypes)
777               (setq mime-type (mailcap-extension-to-mime extension))
778               (if (and mime-type
779                        (not (string-equal mime-type "application/octet-stream")))
780                   mime-type
781                 nil))
782           nil))))
783
784 (defun notmuch-show-insert-part-text/html (msg part content-type nth depth button)
785   (if (eq mm-text-html-renderer 'shr)
786       ;; It's easier to drive shr ourselves than to work around the
787       ;; goofy things `mm-shr' does (like irreversibly taking over
788       ;; content ID handling).
789
790       ;; FIXME: If we block an image, offer a button to load external
791       ;; images.
792       (let ((shr-blocked-images notmuch-show-text/html-blocked-images))
793         (notmuch-show--insert-part-text/html-shr msg part))
794     ;; Otherwise, let message-mode do the heavy lifting
795     ;;
796     ;; w3m sets up a keymap which "leaks" outside the invisible region
797     ;; and causes strange effects in notmuch. We set
798     ;; mm-inline-text-html-with-w3m-keymap to nil to tell w3m not to
799     ;; set a keymap (so the normal notmuch-show-mode-map remains).
800     (let ((mm-inline-text-html-with-w3m-keymap nil)
801           ;; FIXME: If we block an image, offer a button to load external
802           ;; images.
803           (gnus-blocked-images notmuch-show-text/html-blocked-images))
804       (notmuch-show-insert-part-*/* msg part content-type nth depth button))))
805
806 ;; These functions are used by notmuch-show--insert-part-text/html-shr
807 (declare-function libxml-parse-html-region "xml.c")
808 (declare-function shr-insert-document "shr")
809
810 (defun notmuch-show--insert-part-text/html-shr (msg part)
811   ;; Make sure shr is loaded before we start let-binding its globals
812   (require 'shr)
813   (let ((dom (let ((process-crypto notmuch-show-process-crypto))
814                (with-temp-buffer
815                  (insert (notmuch-get-bodypart-text msg part process-crypto))
816                  (libxml-parse-html-region (point-min) (point-max)))))
817         (shr-content-function
818          (lambda (url)
819            ;; shr strips the "cid:" part of URL, but doesn't
820            ;; URL-decode it (see RFC 2392).
821            (let ((cid (url-unhex-string url)))
822              (first (notmuch-show--get-cid-content cid))))))
823     (shr-insert-document dom)
824     t))
825
826 (defun notmuch-show-insert-part-*/* (msg part content-type nth depth button)
827   ;; This handler _must_ succeed - it is the handler of last resort.
828   (notmuch-mm-display-part-inline msg part content-type notmuch-show-process-crypto)
829   t)
830
831 ;; Functions for determining how to handle MIME parts.
832
833 (defun notmuch-show-handlers-for (content-type)
834   "Return a list of content handlers for a part of type CONTENT-TYPE."
835   (let (result)
836     (mapc (lambda (func)
837             (if (functionp func)
838                 (push func result)))
839           ;; Reverse order of prefrence.
840           (list (intern (concat "notmuch-show-insert-part-*/*"))
841                 (intern (concat
842                          "notmuch-show-insert-part-"
843                          (car (notmuch-split-content-type content-type))
844                          "/*"))
845                 (intern (concat "notmuch-show-insert-part-" content-type))))
846     result))
847
848 ;; \f
849
850 (defun notmuch-show-insert-bodypart-internal (msg part content-type nth depth button)
851   ;; Run the handlers until one of them succeeds.
852   (loop for handler in (notmuch-show-handlers-for content-type)
853         until (condition-case err
854                   (funcall handler msg part content-type nth depth button)
855                 ;; Specifying `debug' here lets the debugger run if
856                 ;; `debug-on-error' is non-nil.
857                 ((debug error)
858                  (insert "!!! Bodypart handler `" (prin1-to-string handler) "' threw an error:\n"
859                          "!!! " (error-message-string err) "\n")
860                  nil))))
861
862 (defun notmuch-show-create-part-overlays (button beg end)
863   "Add an overlay to the part between BEG and END"
864
865   ;; If there is no button (i.e., the part is text/plain and the first
866   ;; part) or if the part has no content then we don't make the part
867   ;; toggleable.
868   (when (and button (/= beg end))
869     (button-put button 'overlay (make-overlay beg end))
870     ;; Return true if we created an overlay.
871     t))
872
873 (defun notmuch-show-record-part-information (part beg end)
874   "Store PART as a text property from BEG to END"
875
876   ;; Record part information.  Since we already inserted subparts,
877   ;; don't override existing :notmuch-part properties.
878   (notmuch-map-text-property beg end :notmuch-part
879                              (lambda (v) (or v part)))
880   ;; Make :notmuch-part front sticky and rear non-sticky so it stays
881   ;; applied to the beginning of each line when we indent the
882   ;; message.  Since we're operating on arbitrary renderer output,
883   ;; watch out for sticky specs of t, which means all properties are
884   ;; front-sticky/rear-nonsticky.
885   (notmuch-map-text-property beg end 'front-sticky
886                              (lambda (v) (if (listp v)
887                                              (pushnew :notmuch-part v)
888                                            v)))
889   (notmuch-map-text-property beg end 'rear-nonsticky
890                              (lambda (v) (if (listp v)
891                                              (pushnew :notmuch-part v)
892                                            v))))
893
894 (defun notmuch-show-lazy-part (part-args button)
895   ;; Insert the lazy part after the button for the part. We would just
896   ;; move to the start of the new line following the button and insert
897   ;; the part but that point might have text properties (eg colours
898   ;; from a message header etc) so instead we start from the last
899   ;; character of the button by adding a newline and finish by
900   ;; removing the extra newline from the end of the part.
901   (save-excursion
902     (goto-char (button-end button))
903     (insert "\n")
904     (let* ((inhibit-read-only t)
905            ;; We need to use markers for the start and end of the part
906            ;; because the part insertion functions do not guarantee
907            ;; to leave point at the end of the part.
908            (part-beg (copy-marker (point) nil))
909            (part-end (copy-marker (point) t))
910            ;; We have to save the depth as we can't find the depth
911            ;; when narrowed.
912            (depth (notmuch-show-get-depth)))
913       (save-restriction
914         (narrow-to-region part-beg part-end)
915         (delete-region part-beg part-end)
916         (apply #'notmuch-show-insert-bodypart-internal part-args)
917         (indent-rigidly part-beg part-end depth))
918       (goto-char part-end)
919       (delete-char 1)
920       (notmuch-show-record-part-information (second part-args)
921                                             (button-start button)
922                                             part-end)
923       ;; Create the overlay. If the lazy-part turned out to be empty/not
924       ;; showable this returns nil.
925       (notmuch-show-create-part-overlays button part-beg part-end))))
926
927 (defun notmuch-show-mime-type (part)
928   "Return the correct mime-type to use for PART."
929   (let ((content-type (downcase (plist-get part :content-type))))
930     (or (and (string= content-type "application/octet-stream")
931              (notmuch-show-get-mime-type-of-application/octet-stream part))
932         (and (string= content-type "inline patch")
933              "text/x-diff")
934         content-type)))
935
936 ;; The following variable can be overridden by let bindings.
937 (defvar notmuch-show-insert-header-p-function 'notmuch-show-insert-header-p
938   "Specify which function decides which part headers get inserted.
939
940 The function should take two parameters, PART and HIDE, and
941 should return non-NIL if a header button should be inserted for
942 this part.")
943
944 (defun notmuch-show-insert-header-p (part hide)
945   ;; Show all part buttons except for the first part if it is text/plain.
946   (let ((mime-type (notmuch-show-mime-type part)))
947     (not (and (string= mime-type "text/plain")
948               (<= (plist-get part :id) 1)))))
949
950 (defun notmuch-show-reply-insert-header-p-never (part hide)
951   nil)
952
953 (defun notmuch-show-reply-insert-header-p-trimmed (part hide)
954   (let ((mime-type (notmuch-show-mime-type part)))
955     (and (not (notmuch-match-content-type mime-type "multipart/*"))
956          (not hide))))
957
958 (defun notmuch-show-reply-insert-header-p-minimal (part hide)
959   (let ((mime-type (notmuch-show-mime-type part)))
960     (and (notmuch-match-content-type mime-type "text/*")
961          (not hide))))
962
963 (defun notmuch-show-insert-bodypart (msg part depth &optional hide)
964   "Insert the body part PART at depth DEPTH in the current thread.
965
966 HIDE determines whether to show or hide the part and the button
967 as follows: If HIDE is nil, show the part and the button. If HIDE
968 is t, hide the part initially and show the button."
969
970   (let* ((content-type (downcase (plist-get part :content-type)))
971          (mime-type (notmuch-show-mime-type part))
972          (nth (plist-get part :id))
973          (long (and (notmuch-match-content-type mime-type "text/*")
974                     (> notmuch-show-max-text-part-size 0)
975                     (> (length (plist-get part :content)) notmuch-show-max-text-part-size)))
976          (beg (point))
977          ;; This default header-p function omits the part button for
978          ;; the first (or only) part if this is text/plain.
979          (button (when (funcall notmuch-show-insert-header-p-function part hide)
980                    (notmuch-show-insert-part-header nth mime-type content-type (plist-get part :filename))))
981          ;; Hide the part initially if HIDE is t, or if it is too long
982          ;; and we have a button to allow toggling.
983          (show-part (not (or (equal hide t)
984                              (and long button))))
985          (content-beg (point)))
986
987     ;; Store the computed mime-type for later use (e.g. by attachment handlers).
988     (plist-put part :computed-type mime-type)
989
990     (if show-part
991         (notmuch-show-insert-bodypart-internal msg part mime-type nth depth button)
992       (when button
993         (button-put button :notmuch-lazy-part
994                     (list msg part mime-type nth depth button))))
995
996     ;; Some of the body part handlers leave point somewhere up in the
997     ;; part, so we make sure that we're down at the end.
998     (goto-char (point-max))
999     ;; Ensure that the part ends with a carriage return.
1000     (unless (bolp)
1001       (insert "\n"))
1002     ;; We do not create the overlay for hidden (lazy) parts until
1003     ;; they are inserted.
1004     (if show-part
1005         (notmuch-show-create-part-overlays button content-beg (point))
1006       (save-excursion
1007         (notmuch-show-toggle-part-invisibility button)))
1008     (notmuch-show-record-part-information part beg (point))))
1009
1010 (defun notmuch-show-insert-body (msg body depth)
1011   "Insert the body BODY at depth DEPTH in the current thread."
1012
1013   ;; Register all content IDs for this message.  According to RFC
1014   ;; 2392, content IDs are *global*, but it's okay if an MUA treats
1015   ;; them as only global within a message.
1016   (notmuch-show--register-cids msg (first body))
1017
1018   (mapc (lambda (part) (notmuch-show-insert-bodypart msg part depth)) body))
1019
1020 (defun notmuch-show-make-symbol (type)
1021   (make-symbol (concat "notmuch-show-" type)))
1022
1023 (defun notmuch-show-strip-re (string)
1024   (replace-regexp-in-string "^\\([Rr]e: *\\)+" "" string))
1025
1026 (defvar notmuch-show-previous-subject "")
1027 (make-variable-buffer-local 'notmuch-show-previous-subject)
1028
1029 (defun notmuch-show-insert-msg (msg depth)
1030   "Insert the message MSG at depth DEPTH in the current thread."
1031   (let* ((headers (plist-get msg :headers))
1032          ;; Indentation causes the buffer offset of the start/end
1033          ;; points to move, so we must use markers.
1034          message-start message-end
1035          content-start content-end
1036          headers-start headers-end
1037          (bare-subject (notmuch-show-strip-re (plist-get headers :Subject))))
1038
1039     (setq message-start (point-marker))
1040
1041     (notmuch-show-insert-headerline headers
1042                                     (or (if notmuch-show-relative-dates
1043                                             (plist-get msg :date_relative)
1044                                           nil)
1045                                         (plist-get headers :Date))
1046                                     (plist-get msg :tags) depth)
1047
1048     (setq content-start (point-marker))
1049
1050     ;; Set `headers-start' to point after the 'Subject:' header to be
1051     ;; compatible with the existing implementation. This just sets it
1052     ;; to after the first header.
1053     (notmuch-show-insert-headers headers)
1054     (save-excursion
1055       (goto-char content-start)
1056       ;; If the subject of this message is the same as that of the
1057       ;; previous message, don't display it when this message is
1058       ;; collapsed.
1059       (when (not (string= notmuch-show-previous-subject
1060                           bare-subject))
1061         (forward-line 1))
1062       (setq headers-start (point-marker)))
1063     (setq headers-end (point-marker))
1064
1065     (setq notmuch-show-previous-subject bare-subject)
1066
1067     ;; A blank line between the headers and the body.
1068     (insert "\n")
1069     (notmuch-show-insert-body msg (plist-get msg :body)
1070                               (if notmuch-show-indent-content depth 0))
1071     ;; Ensure that the body ends with a newline.
1072     (unless (bolp)
1073       (insert "\n"))
1074     (setq content-end (point-marker))
1075
1076     ;; Indent according to the depth in the thread.
1077     (if notmuch-show-indent-content
1078         (indent-rigidly content-start content-end (* notmuch-show-indent-messages-width depth)))
1079
1080     (setq message-end (point-max-marker))
1081
1082     ;; Save the extents of this message over the whole text of the
1083     ;; message.
1084     (put-text-property message-start message-end :notmuch-message-extent (cons message-start message-end))
1085
1086     ;; Create overlays used to control visibility
1087     (plist-put msg :headers-overlay (make-overlay headers-start headers-end))
1088     (plist-put msg :message-overlay (make-overlay headers-start content-end))
1089
1090     (plist-put msg :depth depth)
1091
1092     ;; Save the properties for this message. Currently this saves the
1093     ;; entire message (augmented it with other stuff), which seems
1094     ;; like overkill. We might save a reduced subset (for example, not
1095     ;; the content).
1096     (notmuch-show-set-message-properties msg)
1097
1098     ;; Set header visibility.
1099     (notmuch-show-headers-visible msg notmuch-message-headers-visible)
1100
1101     ;; Message visibility depends on whether it matched the search
1102     ;; criteria.
1103     (notmuch-show-message-visible msg (and (plist-get msg :match)
1104                                            (not (plist-get msg :excluded))))))
1105
1106 (defun notmuch-show-toggle-process-crypto ()
1107   "Toggle the processing of cryptographic MIME parts."
1108   (interactive)
1109   (setq notmuch-show-process-crypto (not notmuch-show-process-crypto))
1110   (message (if notmuch-show-process-crypto
1111                "Processing cryptographic MIME parts."
1112              "Not processing cryptographic MIME parts."))
1113   (notmuch-show-refresh-view))
1114
1115 (defun notmuch-show-toggle-elide-non-matching ()
1116   "Toggle the display of non-matching messages."
1117   (interactive)
1118   (setq notmuch-show-elide-non-matching-messages (not notmuch-show-elide-non-matching-messages))
1119   (message (if notmuch-show-elide-non-matching-messages
1120                "Showing matching messages only."
1121              "Showing all messages."))
1122   (notmuch-show-refresh-view))
1123
1124 (defun notmuch-show-toggle-thread-indentation ()
1125   "Toggle the indentation of threads."
1126   (interactive)
1127   (setq notmuch-show-indent-content (not notmuch-show-indent-content))
1128   (message (if notmuch-show-indent-content
1129                "Content is indented."
1130              "Content is not indented."))
1131   (notmuch-show-refresh-view))
1132
1133 (defun notmuch-show-insert-tree (tree depth)
1134   "Insert the message tree TREE at depth DEPTH in the current thread."
1135   (let ((msg (car tree))
1136         (replies (cadr tree)))
1137     ;; We test whether there is a message or just some replies.
1138     (when msg
1139       (notmuch-show-insert-msg msg depth))
1140     (notmuch-show-insert-thread replies (1+ depth))))
1141
1142 (defun notmuch-show-insert-thread (thread depth)
1143   "Insert the thread THREAD at depth DEPTH in the current forest."
1144   (mapc (lambda (tree) (notmuch-show-insert-tree tree depth)) thread))
1145
1146 (defun notmuch-show-insert-forest (forest)
1147   "Insert the forest of threads FOREST."
1148   (mapc (lambda (thread) (notmuch-show-insert-thread thread 0)) forest))
1149
1150 (defvar notmuch-id-regexp
1151   (concat
1152    ;; Match the id: prefix only if it begins a word (to disallow, for
1153    ;; example, matching cid:).
1154    "\\<id:\\("
1155    ;; If the term starts with a ", then parse Xapian's quoted boolean
1156    ;; term syntax, which allows for anything as long as embedded
1157    ;; double quotes escaped by doubling them.  We also disallow
1158    ;; newlines (which Xapian allows) to prevent runaway terms.
1159    "\"\\([^\"\n]\\|\"\"\\)*\""
1160    ;; Otherwise, parse Xapian's unquoted syntax, which goes up to the
1161    ;; next space or ).  We disallow [.,;] as the last character
1162    ;; because these are probably part of the surrounding text, and not
1163    ;; part of the id.  This doesn't match single character ids; meh.
1164    "\\|[^\"[:space:])][^[:space:])]*[^])[:space:].,:;?!]"
1165    "\\)")
1166   "The regexp used to match id: links in messages.")
1167
1168 (defvar notmuch-mid-regexp
1169   ;; goto-address-url-regexp matched cid: links, which have the same
1170   ;; grammar as the message ID part of a mid: link.  Construct the
1171   ;; regexp using the same technique as goto-address-url-regexp.
1172   (concat "\\<mid:\\(" thing-at-point-url-path-regexp "\\)")
1173   "The regexp used to match mid: links in messages.
1174
1175 See RFC 2392.")
1176
1177 (defun notmuch-show-buttonise-links (start end)
1178   "Buttonise URLs and mail addresses between START and END.
1179
1180 This also turns id:\"<message id>\"-parts and mid: links into
1181 buttons for a corresponding notmuch search."
1182   (goto-address-fontify-region start end)
1183   (save-excursion
1184     (let (links)
1185       (goto-char start)
1186       (while (re-search-forward notmuch-id-regexp end t)
1187         (push (list (match-beginning 0) (match-end 0)
1188                     (match-string-no-properties 0)) links))
1189       (goto-char start)
1190       (while (re-search-forward notmuch-mid-regexp end t)
1191         (let* ((mid-cid (match-string-no-properties 1))
1192                (mid (save-match-data
1193                       (string-match "^[^/]*" mid-cid)
1194                       (url-unhex-string (match-string 0 mid-cid)))))
1195           (push (list (match-beginning 0) (match-end 0)
1196                       (notmuch-id-to-query mid)) links)))
1197       (dolist (link links)
1198         ;; Remove the overlay created by goto-address-mode
1199         (remove-overlays (first link) (second link) 'goto-address t)
1200         (make-text-button (first link) (second link)
1201                           :type 'notmuch-button-type
1202                           'action `(lambda (arg)
1203                                      (notmuch-show ,(third link) current-prefix-arg))
1204                           'follow-link t
1205                           'help-echo "Mouse-1, RET: search for this message"
1206                           'face goto-address-mail-face)))))
1207
1208 ;;;###autoload
1209 (defun notmuch-show (thread-id &optional elide-toggle parent-buffer query-context buffer-name)
1210   "Run \"notmuch show\" with the given thread ID and display results.
1211
1212 ELIDE-TOGGLE, if non-nil, inverts the default elide behavior.
1213
1214 The optional PARENT-BUFFER is the notmuch-search buffer from
1215 which this notmuch-show command was executed, (so that the
1216 next thread from that buffer can be show when done with this
1217 one).
1218
1219 The optional QUERY-CONTEXT is a notmuch search term. Only
1220 messages from the thread matching this search term are shown if
1221 non-nil.
1222
1223 The optional BUFFER-NAME provides the name of the buffer in
1224 which the message thread is shown. If it is nil (which occurs
1225 when the command is called interactively) the argument to the
1226 function is used.
1227
1228 Returns the buffer containing the messages, or NIL if no messages
1229 matched."
1230   (interactive "sNotmuch show: \nP")
1231   (let ((buffer-name (generate-new-buffer-name
1232                       (or buffer-name
1233                           (concat "*notmuch-" thread-id "*")))))
1234     (switch-to-buffer (get-buffer-create buffer-name))
1235     ;; No need to track undo information for this buffer.
1236     (setq buffer-undo-list t)
1237
1238     (notmuch-show-mode)
1239
1240     ;; Set various buffer local variables to their appropriate initial
1241     ;; state. Do this after enabling `notmuch-show-mode' so that they
1242     ;; aren't wiped out.
1243     (setq notmuch-show-thread-id thread-id
1244           notmuch-show-parent-buffer parent-buffer
1245           notmuch-show-query-context query-context
1246
1247           notmuch-show-process-crypto notmuch-crypto-process-mime
1248           ;; If `elide-toggle', invert the default value.
1249           notmuch-show-elide-non-matching-messages
1250           (if elide-toggle
1251               (not notmuch-show-only-matching-messages)
1252             notmuch-show-only-matching-messages))
1253
1254     (add-hook 'post-command-hook #'notmuch-show-command-hook nil t)
1255     (jit-lock-register #'notmuch-show-buttonise-links)
1256
1257     (notmuch-tag-clear-cache)
1258
1259     (let ((inhibit-read-only t))
1260       (if (notmuch-show--build-buffer)
1261           ;; Messages were inserted into the buffer.
1262           (current-buffer)
1263
1264         ;; No messages were inserted - presumably none matched the
1265         ;; query.
1266         (kill-buffer (current-buffer))
1267         (ding)
1268         (message "No messages matched the query!")
1269         nil))))
1270
1271 (defun notmuch-show--build-buffer (&optional state)
1272   "Display messages matching the current buffer context.
1273
1274 Apply the previously saved STATE if supplied, otherwise show the
1275 first relevant message.
1276
1277 If no messages match the query return NIL."
1278   (let* ((basic-args (list notmuch-show-thread-id))
1279          (args (if notmuch-show-query-context
1280                    (append (list "\'") basic-args
1281                            (list "and (" notmuch-show-query-context ")\'"))
1282                  (append (list "\'") basic-args (list "\'"))))
1283          (cli-args (cons "--exclude=false"
1284                          (when notmuch-show-elide-non-matching-messages
1285                            (list "--entire-thread=false"))))
1286
1287          (forest (or (notmuch-query-get-threads (append cli-args args))
1288                      ;; If a query context reduced the number of
1289                      ;; results to zero, try again without it.
1290                      (and notmuch-show-query-context
1291                           (notmuch-query-get-threads (append cli-args basic-args)))))
1292
1293          ;; Must be reset every time we are going to start inserting
1294          ;; messages into the buffer.
1295          (notmuch-show-previous-subject ""))
1296
1297     (when forest
1298       (notmuch-show-insert-forest forest)
1299
1300       ;; Store the original tags for each message so that we can
1301       ;; display changes.
1302       (notmuch-show-mapc
1303        (lambda () (notmuch-show-set-prop :orig-tags (notmuch-show-get-tags))))
1304
1305       ;; Set the header line to the subject of the first message.
1306       (setq header-line-format
1307             (replace-regexp-in-string "%" "%%"
1308                                       (notmuch-sanitize
1309                                        (notmuch-show-strip-re
1310                                         (notmuch-show-get-subject)))))
1311
1312       (run-hooks 'notmuch-show-hook)
1313
1314       (if state
1315           (notmuch-show-apply-state state)
1316         ;; With no state to apply, just go to the first message.
1317         (notmuch-show-goto-first-wanted-message)))
1318
1319     ;; Report back to the caller whether any messages matched.
1320     forest))
1321
1322 (defun notmuch-show-capture-state ()
1323   "Capture the state of the current buffer.
1324
1325 This includes:
1326  - the list of open messages,
1327  - the current message."
1328   (list (notmuch-show-get-message-id) (notmuch-show-get-message-ids-for-open-messages)))
1329
1330 (defun notmuch-show-get-query ()
1331   "Return the current query in this show buffer"
1332   (if notmuch-show-query-context
1333       (concat notmuch-show-thread-id
1334               " and ("
1335               notmuch-show-query-context
1336               ")")
1337     notmuch-show-thread-id))
1338
1339 (defun notmuch-show-goto-message (msg-id)
1340   "Go to message with msg-id."
1341   (goto-char (point-min))
1342   (unless (loop if (string= msg-id (notmuch-show-get-message-id))
1343                 return t
1344                 until (not (notmuch-show-goto-message-next)))
1345     (goto-char (point-min))
1346     (message "Message-id not found."))
1347   (notmuch-show-message-adjust))
1348
1349 (defun notmuch-show-apply-state (state)
1350   "Apply STATE to the current buffer.
1351
1352 This includes:
1353  - opening the messages previously opened,
1354  - closing all other messages,
1355  - moving to the correct current message."
1356   (let ((current (car state))
1357         (open (cadr state)))
1358
1359     ;; Open those that were open.
1360     (goto-char (point-min))
1361     (loop do (notmuch-show-message-visible (notmuch-show-get-message-properties)
1362                                            (member (notmuch-show-get-message-id) open))
1363           until (not (notmuch-show-goto-message-next)))
1364
1365     ;; Go to the previously open message.
1366     (notmuch-show-goto-message current)))
1367
1368 (defun notmuch-show-refresh-view (&optional reset-state)
1369   "Refresh the current view.
1370
1371 Refreshes the current view, observing changes in display
1372 preferences. If invoked with a prefix argument (or RESET-STATE is
1373 non-nil) then the state of the buffer (open/closed messages) is
1374 reset based on the original query."
1375   (interactive "P")
1376   (let ((inhibit-read-only t)
1377         (state (unless reset-state
1378                  (notmuch-show-capture-state))))
1379     ;; `erase-buffer' does not seem to remove overlays, which can lead
1380     ;; to weird effects such as remaining images, so remove them
1381     ;; manually.
1382     (remove-overlays)
1383     (erase-buffer)
1384
1385     (unless (notmuch-show--build-buffer state)
1386       ;; No messages were inserted.
1387       (kill-buffer (current-buffer))
1388       (ding)
1389       (message "Refreshing the buffer resulted in no messages!"))))
1390
1391 (defvar notmuch-show-stash-map
1392   (let ((map (make-sparse-keymap)))
1393     (define-key map "c" 'notmuch-show-stash-cc)
1394     (define-key map "d" 'notmuch-show-stash-date)
1395     (define-key map "F" 'notmuch-show-stash-filename)
1396     (define-key map "f" 'notmuch-show-stash-from)
1397     (define-key map "i" 'notmuch-show-stash-message-id)
1398     (define-key map "I" 'notmuch-show-stash-message-id-stripped)
1399     (define-key map "s" 'notmuch-show-stash-subject)
1400     (define-key map "T" 'notmuch-show-stash-tags)
1401     (define-key map "t" 'notmuch-show-stash-to)
1402     (define-key map "l" 'notmuch-show-stash-mlarchive-link)
1403     (define-key map "L" 'notmuch-show-stash-mlarchive-link-and-go)
1404     (define-key map "G" 'notmuch-show-stash-git-send-email)
1405     (define-key map "?" 'notmuch-subkeymap-help)
1406     map)
1407   "Submap for stash commands")
1408 (fset 'notmuch-show-stash-map notmuch-show-stash-map)
1409
1410 (defvar notmuch-show-part-map
1411   (let ((map (make-sparse-keymap)))
1412     (define-key map "s" 'notmuch-show-save-part)
1413     (define-key map "v" 'notmuch-show-view-part)
1414     (define-key map "o" 'notmuch-show-interactively-view-part)
1415     (define-key map "|" 'notmuch-show-pipe-part)
1416     (define-key map "?" 'notmuch-subkeymap-help)
1417     map)
1418   "Submap for part commands")
1419 (fset 'notmuch-show-part-map notmuch-show-part-map)
1420
1421 (defvar notmuch-show-mode-map
1422   (let ((map (make-sparse-keymap)))
1423     (set-keymap-parent map notmuch-common-keymap)
1424     (define-key map "Z" 'notmuch-tree-from-show-current-query)
1425     (define-key map (kbd "<C-tab>") 'widget-backward)
1426     (define-key map (kbd "M-TAB") 'notmuch-show-previous-button)
1427     (define-key map (kbd "<backtab>") 'notmuch-show-previous-button)
1428     (define-key map (kbd "TAB") 'notmuch-show-next-button)
1429     (define-key map "f" 'notmuch-show-forward-message)
1430     (define-key map "F" 'notmuch-show-forward-open-messages)
1431     (define-key map "l" 'notmuch-show-filter-thread)
1432     (define-key map "r" 'notmuch-show-reply-sender)
1433     (define-key map "R" 'notmuch-show-reply)
1434     (define-key map "|" 'notmuch-show-pipe-message)
1435     (define-key map "w" 'notmuch-show-save-attachments)
1436     (define-key map "V" 'notmuch-show-view-raw-message)
1437     (define-key map "c" 'notmuch-show-stash-map)
1438     (define-key map "h" 'notmuch-show-toggle-visibility-headers)
1439     (define-key map "*" 'notmuch-show-tag-all)
1440     (define-key map "-" 'notmuch-show-remove-tag)
1441     (define-key map "+" 'notmuch-show-add-tag)
1442     (define-key map "X" 'notmuch-show-archive-thread-then-exit)
1443     (define-key map "x" 'notmuch-show-archive-message-then-next-or-exit)
1444     (define-key map "A" 'notmuch-show-archive-thread-then-next)
1445     (define-key map "a" 'notmuch-show-archive-message-then-next-or-next-thread)
1446     (define-key map "N" 'notmuch-show-next-message)
1447     (define-key map "P" 'notmuch-show-previous-message)
1448     (define-key map "n" 'notmuch-show-next-open-message)
1449     (define-key map "p" 'notmuch-show-previous-open-message)
1450     (define-key map (kbd "M-n") 'notmuch-show-next-thread-show)
1451     (define-key map (kbd "M-p") 'notmuch-show-previous-thread-show)
1452     (define-key map (kbd "DEL") 'notmuch-show-rewind)
1453     (define-key map " " 'notmuch-show-advance-and-archive)
1454     (define-key map (kbd "M-RET") 'notmuch-show-open-or-close-all)
1455     (define-key map (kbd "RET") 'notmuch-show-toggle-message)
1456     (define-key map "#" 'notmuch-show-print-message)
1457     (define-key map "!" 'notmuch-show-toggle-elide-non-matching)
1458     (define-key map "$" 'notmuch-show-toggle-process-crypto)
1459     (define-key map "<" 'notmuch-show-toggle-thread-indentation)
1460     (define-key map "t" 'toggle-truncate-lines)
1461     (define-key map "." 'notmuch-show-part-map)
1462     map)
1463   "Keymap for \"notmuch show\" buffers.")
1464 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
1465
1466 (defun notmuch-show-mode ()
1467   "Major mode for viewing a thread with notmuch.
1468
1469 This buffer contains the results of the \"notmuch show\" command
1470 for displaying a single thread of email from your email archives.
1471
1472 By default, various components of email messages, (citations,
1473 signatures, already-read messages), are hidden. You can make
1474 these parts visible by clicking with the mouse button or by
1475 pressing RET after positioning the cursor on a hidden part, (for
1476 which \\[notmuch-show-next-button] and \\[notmuch-show-previous-button] are helpful).
1477
1478 Reading the thread sequentially is well-supported by pressing
1479 \\[notmuch-show-advance-and-archive]. This will scroll the current message (if necessary), advance
1480 to the next message, or advance to the next thread (if already on
1481 the last message of a thread).
1482
1483 Other commands are available to read or manipulate the thread
1484 more selectively, (such as '\\[notmuch-show-next-message]' and '\\[notmuch-show-previous-message]' to advance to messages
1485 without removing any tags, and '\\[notmuch-show-archive-thread]' to archive an entire thread
1486 without scrolling through with \\[notmuch-show-advance-and-archive]).
1487
1488 You can add or remove arbitrary tags from the current message with
1489 '\\[notmuch-show-add-tag]' or '\\[notmuch-show-remove-tag]'.
1490
1491 All currently available key bindings:
1492
1493 \\{notmuch-show-mode-map}"
1494   (interactive)
1495   (kill-all-local-variables)
1496   (setq notmuch-buffer-refresh-function #'notmuch-show-refresh-view)
1497   (use-local-map notmuch-show-mode-map)
1498   (setq major-mode 'notmuch-show-mode
1499         mode-name "notmuch-show")
1500   (setq buffer-read-only t
1501         truncate-lines t))
1502
1503 (defun notmuch-tree-from-show-current-query ()
1504   "Call notmuch tree with the current query"
1505   (interactive)
1506   (notmuch-tree notmuch-show-thread-id
1507                 notmuch-show-query-context
1508                 (notmuch-show-get-message-id)))
1509
1510 (defun notmuch-show-move-to-message-top ()
1511   (goto-char (notmuch-show-message-top)))
1512
1513 (defun notmuch-show-move-to-message-bottom ()
1514   (goto-char (notmuch-show-message-bottom)))
1515
1516 (defun notmuch-show-message-adjust ()
1517   (recenter 0))
1518
1519 ;; Movement related functions.
1520
1521 ;; There's some strangeness here where a text property applied to a
1522 ;; region a->b is not found when point is at b. We walk backwards
1523 ;; until finding the property.
1524 (defun notmuch-show-message-extent ()
1525   (let (r)
1526     (save-excursion
1527       (while (not (setq r (get-text-property (point) :notmuch-message-extent)))
1528         (backward-char)))
1529     r))
1530
1531 (defun notmuch-show-message-top ()
1532   (car (notmuch-show-message-extent)))
1533
1534 (defun notmuch-show-message-bottom ()
1535   (cdr (notmuch-show-message-extent)))
1536
1537 (defun notmuch-show-goto-message-next ()
1538   (let ((start (point)))
1539     (notmuch-show-move-to-message-bottom)
1540     (if (not (eobp))
1541         t
1542       (goto-char start)
1543       nil)))
1544
1545 (defun notmuch-show-goto-message-previous ()
1546   (notmuch-show-move-to-message-top)
1547   (if (bobp)
1548       nil
1549     (backward-char)
1550     (notmuch-show-move-to-message-top)
1551     t))
1552
1553 (defun notmuch-show-mapc (function)
1554   "Iterate through all messages in the current thread with
1555 `notmuch-show-goto-message-next' and call FUNCTION for side
1556 effects."
1557   (save-excursion
1558     (goto-char (point-min))
1559     (loop do (funcall function)
1560           while (notmuch-show-goto-message-next))))
1561
1562 ;; Functions relating to the visibility of messages and their
1563 ;; components.
1564
1565 (defun notmuch-show-message-visible (props visible-p)
1566   (overlay-put (plist-get props :message-overlay) 'invisible (not visible-p))
1567   (notmuch-show-set-prop :message-visible visible-p props))
1568
1569 (defun notmuch-show-headers-visible (props visible-p)
1570   (overlay-put (plist-get props :headers-overlay) 'invisible (not visible-p))
1571   (notmuch-show-set-prop :headers-visible visible-p props))
1572
1573 ;; Functions for setting and getting attributes of the current
1574 ;; message.
1575
1576 (defun notmuch-show-set-message-properties (props)
1577   (save-excursion
1578     (notmuch-show-move-to-message-top)
1579     (put-text-property (point) (+ (point) 1) :notmuch-message-properties props)))
1580
1581 (defun notmuch-show-get-message-properties ()
1582   "Return the properties of the current message as a plist.
1583
1584 Some useful entries are:
1585 :headers - Property list containing the headers :Date, :Subject, :From, etc.
1586 :body - Body of the message
1587 :tags - Tags for this message"
1588   (save-excursion
1589     (notmuch-show-move-to-message-top)
1590     (get-text-property (point) :notmuch-message-properties)))
1591
1592 (defun notmuch-show-get-part-properties ()
1593   "Return the properties of the innermost part containing point.
1594
1595 This is the part property list retrieved from the CLI.  Signals
1596 an error if there is no part containing point."
1597   (or (get-text-property (point) :notmuch-part)
1598       (error "No message part here")))
1599
1600 (defun notmuch-show-set-prop (prop val &optional props)
1601   (let ((inhibit-read-only t)
1602         (props (or props
1603                    (notmuch-show-get-message-properties))))
1604     (plist-put props prop val)
1605     (notmuch-show-set-message-properties props)))
1606
1607 (defun notmuch-show-get-prop (prop &optional props)
1608   "Get property PROP from current message in show or tree mode.
1609
1610 It gets property PROP from PROPS or, if PROPS is nil, the current
1611 message in either tree or show. This means that several utility
1612 functions in notmuch-show can be used directly by notmuch-tree as
1613 they just need the correct message properties."
1614   (let ((props (or props
1615                    (cond ((eq major-mode 'notmuch-show-mode)
1616                           (notmuch-show-get-message-properties))
1617                          ((eq major-mode 'notmuch-tree-mode)
1618                           (notmuch-tree-get-message-properties))
1619                          (t nil)))))
1620     (plist-get props prop)))
1621
1622 (defun notmuch-show-get-message-id (&optional bare)
1623   "Return an id: query for the Message-Id of the current message.
1624
1625 If optional argument BARE is non-nil, return
1626 the Message-Id without id: prefix and escaping."
1627   (if bare
1628       (notmuch-show-get-prop :id)
1629     (notmuch-id-to-query (notmuch-show-get-prop :id))))
1630
1631 (defun notmuch-show-get-messages-ids ()
1632   "Return all id: queries of messages in the current thread."
1633   (let ((message-ids))
1634     (notmuch-show-mapc
1635      (lambda () (push (notmuch-show-get-message-id) message-ids)))
1636     message-ids))
1637
1638 (defun notmuch-show-get-messages-ids-search ()
1639   "Return a search string for all message ids of messages in the
1640 current thread."
1641   (mapconcat 'identity (notmuch-show-get-messages-ids) " or "))
1642
1643 ;; dme: Would it make sense to use a macro for many of these?
1644
1645 (defun notmuch-show-get-filename ()
1646   "Return the filename of the current message."
1647   (notmuch-show-get-prop :filename))
1648
1649 (defun notmuch-show-get-header (header &optional props)
1650   "Return the named header of the current message, if any."
1651   (plist-get (notmuch-show-get-prop :headers props) header))
1652
1653 (defun notmuch-show-get-cc ()
1654   (notmuch-show-get-header :Cc))
1655
1656 (defun notmuch-show-get-date ()
1657   (notmuch-show-get-header :Date))
1658
1659 (defun notmuch-show-get-from ()
1660   (notmuch-show-get-header :From))
1661
1662 (defun notmuch-show-get-subject ()
1663   (notmuch-show-get-header :Subject))
1664
1665 (defun notmuch-show-get-to ()
1666   (notmuch-show-get-header :To))
1667
1668 (defun notmuch-show-get-depth ()
1669   (notmuch-show-get-prop :depth))
1670
1671 (defun notmuch-show-set-tags (tags)
1672   "Set the tags of the current message."
1673   (notmuch-show-set-prop :tags tags)
1674   (notmuch-show-update-tags tags))
1675
1676 (defun notmuch-show-get-tags ()
1677   "Return the tags of the current message."
1678   (notmuch-show-get-prop :tags))
1679
1680 (defun notmuch-show-message-visible-p ()
1681   "Is the current message visible?"
1682   (notmuch-show-get-prop :message-visible))
1683
1684 (defun notmuch-show-headers-visible-p ()
1685   "Are the headers of the current message visible?"
1686   (notmuch-show-get-prop :headers-visible))
1687
1688 (put 'notmuch-show-mark-read 'notmuch-prefix-doc
1689      "Mark the current message as unread.")
1690 (defun notmuch-show-mark-read (&optional unread)
1691   "Mark the current message as read.
1692
1693 Mark the current message as read by applying the tag changes in
1694 `notmuch-show-mark-read-tags' to it (remove the \"unread\" tag by
1695 default). If a prefix argument is given, the message will be
1696 marked as unread, i.e. the tag changes in
1697 `notmuch-show-mark-read-tags' will be reversed."
1698   (interactive "P")
1699   (when notmuch-show-mark-read-tags
1700     (apply 'notmuch-show-tag-message
1701            (notmuch-tag-change-list notmuch-show-mark-read-tags unread))))
1702
1703 (defun notmuch-show-seen-current-message (start end)
1704   "Mark the current message read if it is open.
1705
1706 We only mark it read once: if it is changed back then that is a
1707 user decision and we should not override it."
1708   (when (and (notmuch-show-message-visible-p)
1709              (not (notmuch-show-get-prop :seen)))
1710         (notmuch-show-mark-read)
1711         (notmuch-show-set-prop :seen t)))
1712
1713 (defun notmuch-show-command-hook ()
1714   (when (eq major-mode 'notmuch-show-mode)
1715     ;; We need to redisplay to get window-start and window-end correct.
1716     (redisplay)
1717     (save-excursion
1718       (funcall notmuch-show-mark-read-function (window-start) (window-end)))))
1719
1720 (defun notmuch-show-filter-thread (query)
1721   "Filter or LIMIT the current thread based on a new query string.
1722
1723 Reshows the current thread with matches defined by the new query-string."
1724   (interactive (list (notmuch-read-query "Filter thread: ")))
1725   (let ((msg-id (notmuch-show-get-message-id)))
1726     (setq notmuch-show-query-context (if (string= query "") nil query))
1727     (notmuch-show-refresh-view t)
1728     (notmuch-show-goto-message msg-id)))
1729
1730 ;; Functions for getting attributes of several messages in the current
1731 ;; thread.
1732
1733 (defun notmuch-show-get-message-ids-for-open-messages ()
1734   "Return a list of all id: queries for open messages in the current thread."
1735   (save-excursion
1736     (let (message-ids done)
1737       (goto-char (point-min))
1738       (while (not done)
1739         (if (notmuch-show-message-visible-p)
1740             (setq message-ids (append message-ids (list (notmuch-show-get-message-id)))))
1741         (setq done (not (notmuch-show-goto-message-next)))
1742         )
1743       message-ids
1744       )))
1745
1746 ;; Commands typically bound to keys.
1747
1748 (defun notmuch-show-advance ()
1749   "Advance through thread.
1750
1751 If the current message in the thread is not yet fully visible,
1752 scroll by a near screenful to read more of the message.
1753
1754 Otherwise, (the end of the current message is already within the
1755 current window), advance to the next open message."
1756   (interactive)
1757   (let* ((end-of-this-message (notmuch-show-message-bottom))
1758          (visible-end-of-this-message (1- end-of-this-message))
1759          (ret nil))
1760     (while (invisible-p visible-end-of-this-message)
1761       (setq visible-end-of-this-message
1762             (max (point-min)
1763                  (1- (previous-single-char-property-change
1764                       visible-end-of-this-message 'invisible)))))
1765     (cond
1766      ;; Ideally we would test `end-of-this-message' against the result
1767      ;; of `window-end', but that doesn't account for the fact that
1768      ;; the end of the message might be hidden.
1769      ((and visible-end-of-this-message
1770            (> visible-end-of-this-message (window-end)))
1771       ;; The bottom of this message is not visible - scroll.
1772       (scroll-up nil))
1773
1774      ((not (= end-of-this-message (point-max)))
1775       ;; This is not the last message - move to the next visible one.
1776       (notmuch-show-next-open-message))
1777
1778      ((not (= (point) (point-max)))
1779       ;; This is the last message, but the cursor is not at the end of
1780       ;; the buffer. Move it there.
1781       (goto-char (point-max)))
1782
1783      (t
1784       ;; This is the last message - change the return value
1785       (setq ret t)))
1786     ret))
1787
1788 (defun notmuch-show-advance-and-archive ()
1789   "Advance through thread and archive.
1790
1791 This command is intended to be one of the simplest ways to
1792 process a thread of email. It works exactly like
1793 notmuch-show-advance, in that it scrolls through messages in a
1794 show buffer, except that when it gets to the end of the buffer it
1795 archives the entire current thread, (apply changes in
1796 `notmuch-archive-tags'), kills the buffer, and displays the next
1797 thread from the search from which this thread was originally
1798 shown."
1799   (interactive)
1800   (if (notmuch-show-advance)
1801       (notmuch-show-archive-thread-then-next)))
1802
1803 (defun notmuch-show-rewind ()
1804   "Backup through the thread (reverse scrolling compared to \\[notmuch-show-advance-and-archive]).
1805
1806 Specifically, if the beginning of the previous email is fewer
1807 than `window-height' lines from the current point, move to it
1808 just like `notmuch-show-previous-message'.
1809
1810 Otherwise, just scroll down a screenful of the current message.
1811
1812 This command does not modify any message tags, (it does not undo
1813 any effects from previous calls to
1814 `notmuch-show-advance-and-archive'."
1815   (interactive)
1816   (let ((start-of-message (notmuch-show-message-top))
1817         (start-of-window (window-start)))
1818     (cond
1819       ;; Either this message is properly aligned with the start of the
1820       ;; window or the start of this message is not visible on the
1821       ;; screen - scroll.
1822      ((or (= start-of-message start-of-window)
1823           (< start-of-message start-of-window))
1824       (scroll-down)
1825       ;; If a small number of lines from the previous message are
1826       ;; visible, realign so that the top of the current message is at
1827       ;; the top of the screen.
1828       (when (<= (count-screen-lines (window-start) start-of-message)
1829                 next-screen-context-lines)
1830         (goto-char (notmuch-show-message-top))
1831         (notmuch-show-message-adjust))
1832       ;; Move to the top left of the window.
1833       (goto-char (window-start)))
1834      (t
1835       ;; Move to the previous message.
1836       (notmuch-show-previous-message)))))
1837
1838 (put 'notmuch-show-reply 'notmuch-prefix-doc "... and prompt for sender")
1839 (defun notmuch-show-reply (&optional prompt-for-sender)
1840   "Reply to the sender and all recipients of the current message."
1841   (interactive "P")
1842   (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender t))
1843
1844 (put 'notmuch-show-reply-sender 'notmuch-prefix-doc "... and prompt for sender")
1845 (defun notmuch-show-reply-sender (&optional prompt-for-sender)
1846   "Reply to the sender of the current message."
1847   (interactive "P")
1848   (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender nil))
1849
1850 (put 'notmuch-show-forward-message 'notmuch-prefix-doc
1851      "... and prompt for sender")
1852 (defun notmuch-show-forward-message (&optional prompt-for-sender)
1853   "Forward the current message."
1854   (interactive "P")
1855   (notmuch-mua-new-forward-messages (list (notmuch-show-get-message-id))
1856                                     prompt-for-sender))
1857
1858 (put 'notmuch-show-forward-open-messages 'notmuch-prefix-doc
1859      "... and prompt for sender")
1860 (defun notmuch-show-forward-open-messages (&optional prompt-for-sender)
1861   "Forward the currently open messages."
1862   (interactive "P")
1863   (let ((open-messages (notmuch-show-get-message-ids-for-open-messages)))
1864     (unless open-messages
1865       (error "No open messages to forward."))
1866     (notmuch-mua-new-forward-messages open-messages prompt-for-sender)))
1867
1868 (defun notmuch-show-next-message (&optional pop-at-end)
1869   "Show the next message.
1870
1871 If a prefix argument is given and this is the last message in the
1872 thread, navigate to the next thread in the parent search buffer."
1873   (interactive "P")
1874   (if (notmuch-show-goto-message-next)
1875       (notmuch-show-message-adjust)
1876     (if pop-at-end
1877         (notmuch-show-next-thread)
1878       (goto-char (point-max)))))
1879
1880 (defun notmuch-show-previous-message ()
1881   "Show the previous message or the start of the current message."
1882   (interactive)
1883   (if (= (point) (notmuch-show-message-top))
1884       (notmuch-show-goto-message-previous)
1885     (notmuch-show-move-to-message-top))
1886   (notmuch-show-message-adjust))
1887
1888 (defun notmuch-show-next-open-message (&optional pop-at-end)
1889   "Show the next open message.
1890
1891 If a prefix argument is given and this is the last open message
1892 in the thread, navigate to the next thread in the parent search
1893 buffer. Return t if there was a next open message in the thread
1894 to show, nil otherwise."
1895   (interactive "P")
1896   (let (r)
1897     (while (and (setq r (notmuch-show-goto-message-next))
1898                 (not (notmuch-show-message-visible-p))))
1899     (if r
1900         (notmuch-show-message-adjust)
1901       (if pop-at-end
1902           (notmuch-show-next-thread)
1903         (goto-char (point-max))))
1904     r))
1905
1906 (defun notmuch-show-next-matching-message ()
1907   "Show the next matching message."
1908   (interactive)
1909   (let (r)
1910     (while (and (setq r (notmuch-show-goto-message-next))
1911                 (not (notmuch-show-get-prop :match))))
1912     (if r
1913         (notmuch-show-message-adjust)
1914       (goto-char (point-max)))))
1915
1916 (defun notmuch-show-open-if-matched ()
1917   "Open a message if it is matched (whether or not excluded)."
1918   (let ((props (notmuch-show-get-message-properties)))
1919     (notmuch-show-message-visible props (plist-get props :match))))
1920
1921 (defun notmuch-show-goto-first-wanted-message ()
1922   "Move to the first open message and mark it read"
1923   (goto-char (point-min))
1924   (unless (notmuch-show-message-visible-p)
1925     (notmuch-show-next-open-message))
1926   (when (eobp)
1927     ;; There are no matched non-excluded messages so open all matched
1928     ;; (necessarily excluded) messages and go to the first.
1929     (notmuch-show-mapc 'notmuch-show-open-if-matched)
1930     (force-window-update)
1931     (goto-char (point-min))
1932     (unless (notmuch-show-message-visible-p)
1933       (notmuch-show-next-open-message))))
1934
1935 (defun notmuch-show-previous-open-message ()
1936   "Show the previous open message."
1937   (interactive)
1938   (while (and (if (= (point) (notmuch-show-message-top))
1939                   (notmuch-show-goto-message-previous)
1940                 (notmuch-show-move-to-message-top))
1941               (not (notmuch-show-message-visible-p))))
1942   (notmuch-show-message-adjust))
1943
1944 (defun notmuch-show-view-raw-message ()
1945   "View the original source of the current message."
1946   (interactive)
1947   (let* ((id (notmuch-show-get-message-id))
1948          (buf (get-buffer-create (concat "*notmuch-raw-" id "*")))
1949          (inhibit-read-only t))
1950     (switch-to-buffer buf)
1951     (erase-buffer)
1952     (let ((coding-system-for-read 'no-conversion))
1953       (call-process notmuch-command nil t nil "show" "--format=raw" id))
1954     (goto-char (point-min))
1955     (set-buffer-modified-p nil)
1956     (setq buffer-read-only t)
1957     (view-buffer buf 'kill-buffer-if-not-modified)))
1958
1959 (put 'notmuch-show-pipe-message 'notmuch-doc
1960      "Pipe the contents of the current message to a command.")
1961 (put 'notmuch-show-pipe-message 'notmuch-prefix-doc
1962      "Pipe the thread as an mbox to a command.")
1963 (defun notmuch-show-pipe-message (entire-thread command)
1964   "Pipe the contents of the current message (or thread) to COMMAND.
1965
1966 COMMAND will be executed with the raw contents of the current
1967 email message as stdin. Anything printed by the command to stdout
1968 or stderr will appear in the *notmuch-pipe* buffer.
1969
1970 If ENTIRE-THREAD is non-nil (or when invoked with a prefix
1971 argument), COMMAND will receive all open messages in the current
1972 thread (formatted as an mbox) rather than only the current
1973 message."
1974   (interactive (let ((query-string (if current-prefix-arg
1975                                        "Pipe all open messages to command: "
1976                                      "Pipe message to command: ")))
1977                  (list current-prefix-arg (read-string query-string))))
1978   (let (shell-command)
1979     (if entire-thread
1980         (setq shell-command
1981               (concat notmuch-command " show --format=mbox --exclude=false "
1982                       (shell-quote-argument
1983                        (mapconcat 'identity (notmuch-show-get-message-ids-for-open-messages) " OR "))
1984                       " | " command))
1985       (setq shell-command
1986             (concat notmuch-command " show --format=raw "
1987                     (shell-quote-argument (notmuch-show-get-message-id)) " | " command)))
1988     (let ((cwd default-directory)
1989           (buf (get-buffer-create (concat "*notmuch-pipe*"))))
1990       (with-current-buffer buf
1991         (setq buffer-read-only nil)
1992         (erase-buffer)
1993         ;; Use the originating buffer's working directory instead of
1994         ;; that of the pipe buffer.
1995         (cd cwd)
1996         (let ((exit-code (call-process-shell-command shell-command nil buf)))
1997           (goto-char (point-max))
1998           (set-buffer-modified-p nil)
1999           (setq buffer-read-only t)
2000           (unless (zerop exit-code)
2001             (switch-to-buffer-other-window buf)
2002             (message (format "Command '%s' exited abnormally with code %d"
2003                              shell-command exit-code))))))))
2004
2005 (defun notmuch-show-tag-message (&rest tag-changes)
2006   "Change tags for the current message.
2007
2008 TAG-CHANGES is a list of tag operations for `notmuch-tag'."
2009   (let* ((current-tags (notmuch-show-get-tags))
2010          (new-tags (notmuch-update-tags current-tags tag-changes)))
2011     (unless (equal current-tags new-tags)
2012       (notmuch-tag (notmuch-show-get-message-id) tag-changes)
2013       (notmuch-show-set-tags new-tags))))
2014
2015 (defun notmuch-show-tag (tag-changes)
2016   "Change tags for the current message.
2017
2018 See `notmuch-tag' for information on the format of TAG-CHANGES."
2019   (interactive (list (notmuch-read-tag-changes (notmuch-show-get-tags)
2020                                                "Tag message")))
2021   (notmuch-tag (notmuch-show-get-message-id) tag-changes)
2022   (let* ((current-tags (notmuch-show-get-tags))
2023          (new-tags (notmuch-update-tags current-tags tag-changes)))
2024     (unless (equal current-tags new-tags)
2025       (notmuch-show-set-tags new-tags))))
2026
2027 (defun notmuch-show-tag-all (tag-changes)
2028   "Change tags for all messages in the current show buffer.
2029
2030 See `notmuch-tag' for information on the format of TAG-CHANGES."
2031   (interactive
2032    (list (let (tags)
2033            (notmuch-show-mapc
2034             (lambda () (setq tags (append (notmuch-show-get-tags) tags))))
2035            (notmuch-read-tag-changes tags "Tag thread"))))
2036   (notmuch-tag (notmuch-show-get-messages-ids-search) tag-changes)
2037   (notmuch-show-mapc
2038    (lambda ()
2039      (let* ((current-tags (notmuch-show-get-tags))
2040             (new-tags (notmuch-update-tags current-tags tag-changes)))
2041        (unless (equal current-tags new-tags)
2042          (notmuch-show-set-tags new-tags))))))
2043
2044 (defun notmuch-show-add-tag (tag-changes)
2045   "Change tags for the current message (defaulting to add).
2046
2047 Same as `notmuch-show-tag' but sets initial input to '+'."
2048   (interactive
2049    (list (notmuch-read-tag-changes (notmuch-show-get-tags) "Tag message" "+")))
2050   (notmuch-show-tag tag-changes))
2051
2052 (defun notmuch-show-remove-tag (tag-changes)
2053   "Change tags for the current message (defaulting to remove).
2054
2055 Same as `notmuch-show-tag' but sets initial input to '-'."
2056   (interactive
2057    (list (notmuch-read-tag-changes (notmuch-show-get-tags) "Tag message" "-")))
2058   (notmuch-show-tag tag-changes))
2059
2060 (defun notmuch-show-toggle-visibility-headers ()
2061   "Toggle the visibility of the current message headers."
2062   (interactive)
2063   (let ((props (notmuch-show-get-message-properties)))
2064     (notmuch-show-headers-visible
2065      props
2066      (not (plist-get props :headers-visible))))
2067   (force-window-update))
2068
2069 (defun notmuch-show-toggle-message ()
2070   "Toggle the visibility of the current message."
2071   (interactive)
2072   (let ((props (notmuch-show-get-message-properties)))
2073     (notmuch-show-message-visible
2074      props
2075      (not (plist-get props :message-visible))))
2076   (force-window-update))
2077
2078 (put 'notmuch-show-open-or-close-all 'notmuch-doc "Show all messages.")
2079 (put 'notmuch-show-open-or-close-all 'notmuch-prefix-doc "Hide all messages.")
2080 (defun notmuch-show-open-or-close-all ()
2081   "Set the visibility all of the messages in the current thread.
2082
2083 By default make all of the messages visible. With a prefix
2084 argument, hide all of the messages."
2085   (interactive)
2086   (save-excursion
2087     (goto-char (point-min))
2088     (loop do (notmuch-show-message-visible (notmuch-show-get-message-properties)
2089                                            (not current-prefix-arg))
2090           until (not (notmuch-show-goto-message-next))))
2091   (force-window-update))
2092
2093 (defun notmuch-show-next-button ()
2094   "Advance point to the next button in the buffer."
2095   (interactive)
2096   (forward-button 1))
2097
2098 (defun notmuch-show-previous-button ()
2099   "Move point back to the previous button in the buffer."
2100   (interactive)
2101   (backward-button 1))
2102
2103 (defun notmuch-show-next-thread (&optional show previous)
2104   "Move to the next item in the search results, if any.
2105
2106 If SHOW is non-nil, open the next item in a show
2107 buffer. Otherwise just highlight the next item in the search
2108 buffer. If PREVIOUS is non-nil, move to the previous item in the
2109 search results instead."
2110   (interactive "P")
2111   (let ((parent-buffer notmuch-show-parent-buffer))
2112     (notmuch-bury-or-kill-this-buffer)
2113     (when (buffer-live-p parent-buffer)
2114       (switch-to-buffer parent-buffer)
2115       (and (if previous
2116                (notmuch-search-previous-thread)
2117              (notmuch-search-next-thread))
2118            show
2119            (notmuch-search-show-thread)))))
2120
2121 (defun notmuch-show-next-thread-show ()
2122   "Show the next thread in the search results, if any."
2123   (interactive)
2124   (notmuch-show-next-thread t))
2125
2126 (defun notmuch-show-previous-thread-show ()
2127   "Show the previous thread in the search results, if any."
2128   (interactive)
2129   (notmuch-show-next-thread t t))
2130
2131 (put 'notmuch-show-archive-thread 'notmuch-prefix-doc
2132      "Un-archive each message in thread.")
2133 (defun notmuch-show-archive-thread (&optional unarchive)
2134   "Archive each message in thread.
2135
2136 Archive each message currently shown by applying the tag changes
2137 in `notmuch-archive-tags' to each. If a prefix argument is given,
2138 the messages will be \"unarchived\", i.e. the tag changes in
2139 `notmuch-archive-tags' will be reversed.
2140
2141 Note: This command is safe from any race condition of new messages
2142 being delivered to the same thread. It does not archive the
2143 entire thread, but only the messages shown in the current
2144 buffer."
2145   (interactive "P")
2146   (when notmuch-archive-tags
2147     (notmuch-show-tag-all
2148      (notmuch-tag-change-list notmuch-archive-tags unarchive))))
2149
2150 (defun notmuch-show-archive-thread-then-next ()
2151   "Archive all messages in the current buffer, then show next thread from search."
2152   (interactive)
2153   (notmuch-show-archive-thread)
2154   (notmuch-show-next-thread t))
2155
2156 (defun notmuch-show-archive-thread-then-exit ()
2157   "Archive all messages in the current buffer, then exit back to search results."
2158   (interactive)
2159   (notmuch-show-archive-thread)
2160   (notmuch-show-next-thread))
2161
2162 (put 'notmuch-show-archive-message 'notmuch-prefix-doc
2163      "Un-archive the current message.")
2164 (defun notmuch-show-archive-message (&optional unarchive)
2165   "Archive the current message.
2166
2167 Archive the current message by applying the tag changes in
2168 `notmuch-archive-tags' to it. If a prefix argument is given, the
2169 message will be \"unarchived\", i.e. the tag changes in
2170 `notmuch-archive-tags' will be reversed."
2171   (interactive "P")
2172   (when notmuch-archive-tags
2173     (apply 'notmuch-show-tag-message
2174            (notmuch-tag-change-list notmuch-archive-tags unarchive))))
2175
2176 (defun notmuch-show-archive-message-then-next-or-exit ()
2177   "Archive the current message, then show the next open message in the current thread.
2178
2179 If at the last open message in the current thread, then exit back
2180 to search results."
2181   (interactive)
2182   (notmuch-show-archive-message)
2183   (notmuch-show-next-open-message t))
2184
2185 (defun notmuch-show-archive-message-then-next-or-next-thread ()
2186   "Archive the current message, then show the next open message in the current thread.
2187
2188 If at the last open message in the current thread, then show next
2189 thread from search."
2190   (interactive)
2191   (notmuch-show-archive-message)
2192   (unless (notmuch-show-next-open-message)
2193     (notmuch-show-next-thread t)))
2194
2195 (defun notmuch-show-stash-cc ()
2196   "Copy CC field of current message to kill-ring."
2197   (interactive)
2198   (notmuch-common-do-stash (notmuch-show-get-cc)))
2199
2200 (defun notmuch-show-stash-date ()
2201   "Copy date of current message to kill-ring."
2202   (interactive)
2203   (notmuch-common-do-stash (notmuch-show-get-date)))
2204
2205 (defun notmuch-show-stash-filename ()
2206   "Copy filename of current message to kill-ring."
2207   (interactive)
2208   (notmuch-common-do-stash (notmuch-show-get-filename)))
2209
2210 (defun notmuch-show-stash-from ()
2211   "Copy From address of current message to kill-ring."
2212   (interactive)
2213   (notmuch-common-do-stash (notmuch-show-get-from)))
2214
2215 (put 'notmuch-show-stash-message-id 'notmuch-prefix-doc
2216      "Copy thread: query matching current thread to kill-ring.")
2217 (defun notmuch-show-stash-message-id (&optional stash-thread-id)
2218   "Copy id: query matching the current message to kill-ring.
2219
2220 If invoked with a prefix argument (or STASH-THREAD-ID is
2221 non-nil), copy thread: query matching the current thread to
2222 kill-ring."
2223   (interactive "P")
2224   (if stash-thread-id
2225       (notmuch-common-do-stash notmuch-show-thread-id)
2226     (notmuch-common-do-stash (notmuch-show-get-message-id))))
2227
2228 (defun notmuch-show-stash-message-id-stripped ()
2229   "Copy message ID of current message (sans `id:' prefix) to kill-ring."
2230   (interactive)
2231   (notmuch-common-do-stash (notmuch-show-get-message-id t)))
2232
2233 (defun notmuch-show-stash-subject ()
2234   "Copy Subject field of current message to kill-ring."
2235   (interactive)
2236   (notmuch-common-do-stash (notmuch-show-get-subject)))
2237
2238 (defun notmuch-show-stash-tags ()
2239   "Copy tags of current message to kill-ring as a comma separated list."
2240   (interactive)
2241   (notmuch-common-do-stash (mapconcat 'identity (notmuch-show-get-tags) ",")))
2242
2243 (defun notmuch-show-stash-to ()
2244   "Copy To address of current message to kill-ring."
2245   (interactive)
2246   (notmuch-common-do-stash (notmuch-show-get-to)))
2247
2248 (defun notmuch-show-stash-mlarchive-link (&optional mla)
2249   "Copy an ML Archive URI for the current message to the kill-ring.
2250
2251 This presumes that the message is available at the selected Mailing List Archive.
2252
2253 If optional argument MLA is non-nil, use the provided key instead of prompting
2254 the user (see `notmuch-show-stash-mlarchive-link-alist')."
2255   (interactive)
2256   (let ((url (cdr (assoc
2257                    (or mla
2258                        (let ((completion-ignore-case t))
2259                          (completing-read
2260                           "Mailing List Archive: "
2261                           notmuch-show-stash-mlarchive-link-alist
2262                           nil t nil nil
2263                           notmuch-show-stash-mlarchive-link-default)))
2264                    notmuch-show-stash-mlarchive-link-alist))))
2265     (notmuch-common-do-stash
2266      (if (functionp url)
2267          (funcall url (notmuch-show-get-message-id t))
2268        (concat url (notmuch-show-get-message-id t))))))
2269
2270 (defun notmuch-show-stash-mlarchive-link-and-go (&optional mla)
2271   "Copy an ML Archive URI for the current message to the kill-ring and visit it.
2272
2273 This presumes that the message is available at the selected Mailing List Archive.
2274
2275 If optional argument MLA is non-nil, use the provided key instead of prompting
2276 the user (see `notmuch-show-stash-mlarchive-link-alist')."
2277   (interactive)
2278   (notmuch-show-stash-mlarchive-link mla)
2279   (browse-url (current-kill 0 t)))
2280
2281 (defun notmuch-show-stash-git-helper (addresses prefix)
2282   "Escape, trim, quote, and add PREFIX to each address in list of ADDRESSES, and return the result as a single string."
2283   (mapconcat (lambda (x)
2284                (concat prefix "\""
2285                        ;; escape double-quotes
2286                        (replace-regexp-in-string
2287                         "\"" "\\\\\""
2288                         ;; trim leading and trailing spaces
2289                         (replace-regexp-in-string
2290                          "\\(^ *\\| *$\\)" ""
2291                          x)) "\""))
2292              addresses " "))
2293
2294 (put 'notmuch-show-stash-git-send-email 'notmuch-prefix-doc
2295      "Copy From/To/Cc of current message to kill-ring in a form suitable for pasting to git send-email command line.")
2296
2297 (defun notmuch-show-stash-git-send-email (&optional no-in-reply-to)
2298   "Copy From/To/Cc/Message-Id of current message to kill-ring in a form suitable for pasting to git send-email command line.
2299
2300 If invoked with a prefix argument (or NO-IN-REPLY-TO is non-nil),
2301 omit --in-reply-to=<Message-Id>."
2302   (interactive "P")
2303   (notmuch-common-do-stash
2304    (mapconcat 'identity
2305               (remove ""
2306                       (list
2307                        (notmuch-show-stash-git-helper
2308                         (message-tokenize-header (notmuch-show-get-from)) "--to=")
2309                        (notmuch-show-stash-git-helper
2310                         (message-tokenize-header (notmuch-show-get-to)) "--to=")
2311                        (notmuch-show-stash-git-helper
2312                         (message-tokenize-header (notmuch-show-get-cc)) "--cc=")
2313                        (unless no-in-reply-to
2314                          (notmuch-show-stash-git-helper
2315                           (list (notmuch-show-get-message-id t)) "--in-reply-to="))))
2316               " ")))
2317
2318 ;; Interactive part functions and their helpers
2319
2320 (defun notmuch-show-generate-part-buffer (msg part)
2321   "Return a temporary buffer containing the specified part's content."
2322   (let ((buf (generate-new-buffer " *notmuch-part*"))
2323         (process-crypto notmuch-show-process-crypto))
2324     (with-current-buffer buf
2325       ;; This is always used in the content of mm handles, which
2326       ;; expect undecoded, binary part content.
2327       (insert (notmuch-get-bodypart-binary msg part process-crypto)))
2328     buf))
2329
2330 (defun notmuch-show-current-part-handle ()
2331   "Return an mm-handle for the part containing point.
2332
2333 This creates a temporary buffer for the part's content; the
2334 caller is responsible for killing this buffer as appropriate."
2335   (let* ((msg (notmuch-show-get-message-properties))
2336          (part (notmuch-show-get-part-properties))
2337          (buf (notmuch-show-generate-part-buffer msg part))
2338          (computed-type (plist-get part :computed-type))
2339          (filename (plist-get part :filename))
2340          (disposition (if filename `(attachment (filename . ,filename)))))
2341     (mm-make-handle buf (list computed-type) nil nil disposition)))
2342
2343 (defun notmuch-show-apply-to-current-part-handle (fn)
2344   "Apply FN to an mm-handle for the part containing point.
2345
2346 This ensures that the temporary buffer created for the mm-handle
2347 is destroyed when FN returns."
2348   (let ((handle (notmuch-show-current-part-handle)))
2349     ;; emacs 24.3+ puts stdout/stderr into the calling buffer so we
2350     ;; call it from a temp-buffer, unless
2351     ;; notmuch-show-attachment-debug is non-nil in which case we put
2352     ;; it in " *notmuch-part*".
2353     (unwind-protect
2354         (if notmuch-show-attachment-debug
2355             (with-current-buffer (generate-new-buffer " *notmuch-part*")
2356               (funcall fn handle))
2357           (with-temp-buffer
2358             (funcall fn handle)))
2359       (kill-buffer (mm-handle-buffer handle)))))
2360
2361 (defun notmuch-show-part-button-default (&optional button)
2362   (interactive)
2363   (let ((button (or button (button-at (point)))))
2364     ;; Try to toggle the part, if that fails then call the default
2365     ;; action. The toggle fails if the part has no emacs renderable
2366     ;; content.
2367     (unless (notmuch-show-toggle-part-invisibility button)
2368       (call-interactively notmuch-show-part-button-default-action))))
2369
2370 (defun notmuch-show-save-part ()
2371   "Save the MIME part containing point to a file."
2372   (interactive)
2373   (notmuch-show-apply-to-current-part-handle #'mm-save-part))
2374
2375 (defun notmuch-show-view-part ()
2376   "View the MIME part containing point in an external viewer."
2377   (interactive)
2378   ;; Set mm-inlined-types to nil to force an external viewer
2379   (let ((mm-inlined-types nil))
2380     (notmuch-show-apply-to-current-part-handle #'mm-display-part)))
2381
2382 (defun notmuch-show-interactively-view-part ()
2383   "View the MIME part containing point, prompting for a viewer."
2384   (interactive)
2385   (notmuch-show-apply-to-current-part-handle #'mm-interactively-view-part))
2386
2387 (defun notmuch-show-pipe-part ()
2388   "Pipe the MIME part containing point to an external command."
2389   (interactive)
2390   (notmuch-show-apply-to-current-part-handle #'mm-pipe-part))
2391
2392
2393 (provide 'notmuch-show)