]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-show.el
emacs: Truncate lines and do not enable visual-line-mode in notmuch-show buffers.
[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-query)
34 (require 'notmuch-wash)
35 (require 'notmuch-mua)
36 (require 'notmuch-crypto)
37
38 (declare-function notmuch-call-notmuch-process "notmuch" (&rest args))
39 (declare-function notmuch-fontify-headers "notmuch" nil)
40 (declare-function notmuch-select-tag-with-completion "notmuch" (prompt &rest search-terms))
41 (declare-function notmuch-search-show-thread "notmuch" nil)
42
43 (defcustom notmuch-message-headers '("Subject" "To" "Cc" "Date")
44   "Headers that should be shown in a message, in this order.
45
46 For an open message, all of these headers will be made visible
47 according to `notmuch-message-headers-visible' or can be toggled
48 with `notmuch-show-toggle-headers'. For a closed message, only
49 the first header in the list will be visible."
50   :type '(repeat string)
51   :group 'notmuch-show)
52
53 (defcustom notmuch-message-headers-visible t
54   "Should the headers be visible by default?
55
56 If this value is non-nil, then all of the headers defined in
57 `notmuch-message-headers' will be visible by default in the display
58 of each message. Otherwise, these headers will be hidden and
59 `notmuch-show-toggle-headers' can be used to make the visible for
60 any given message."
61   :type 'boolean
62   :group 'notmuch-show)
63
64 (defcustom notmuch-show-relative-dates t
65   "Display relative dates in the message summary line."
66   :type 'boolean
67   :group 'notmuch-show)
68
69 (defvar notmuch-show-markup-headers-hook '(notmuch-show-colour-headers)
70   "A list of functions called to decorate the headers listed in
71 `notmuch-message-headers'.")
72
73 (defcustom notmuch-show-hook nil
74   "Functions called after populating a `notmuch-show' buffer."
75   :type 'hook
76   :group 'notmuch-show
77   :group 'notmuch-hooks)
78
79 (defcustom notmuch-show-insert-text/plain-hook '(notmuch-wash-wrap-long-lines
80                                                  notmuch-wash-tidy-citations
81                                                  notmuch-wash-elide-blank-lines
82                                                  notmuch-wash-excerpt-citations)
83   "Functions used to improve the display of text/plain parts."
84   :type 'hook
85   :options '(notmuch-wash-convert-inline-patch-to-part
86              notmuch-wash-wrap-long-lines
87              notmuch-wash-tidy-citations
88              notmuch-wash-elide-blank-lines
89              notmuch-wash-excerpt-citations)
90   :group 'notmuch-show
91   :group 'notmuch-hooks)
92
93 ;; Mostly useful for debugging.
94 (defcustom notmuch-show-all-multipart/alternative-parts t
95   "Should all parts of multipart/alternative parts be shown?"
96   :type 'boolean
97   :group 'notmuch-show)
98
99 (defcustom notmuch-show-indent-messages-width 1
100   "Width of message indentation in threads.
101
102 Messages are shown indented according to their depth in a thread.
103 This variable determines the width of this indentation measured
104 in number of blanks.  Defaults to `1', choose `0' to disable
105 indentation."
106   :type 'integer
107   :group 'notmuch-show)
108
109 (defcustom notmuch-show-indent-multipart nil
110   "Should the sub-parts of a multipart/* part be indented?"
111   ;; dme: Not sure which is a good default.
112   :type 'boolean
113   :group 'notmuch-show)
114
115 (defmacro with-current-notmuch-show-message (&rest body)
116   "Evaluate body with current buffer set to the text of current message"
117   `(save-excursion
118      (let ((id (notmuch-show-get-message-id)))
119        (let ((buf (generate-new-buffer (concat "*notmuch-msg-" id "*"))))
120          (with-current-buffer buf
121             (call-process notmuch-command nil t nil "show" "--format=raw" id)
122            ,@body)
123          (kill-buffer buf)))))
124
125 (defun notmuch-show-view-all-mime-parts ()
126   "Use external viewers to view all attachments from the current message."
127   (interactive)
128   (with-current-notmuch-show-message
129    ; We override the mm-inline-media-tests to indicate which message
130    ; parts are already sufficiently handled by the original
131    ; presentation of the message in notmuch-show mode. These parts
132    ; will be inserted directly into the temporary buffer of
133    ; with-current-notmuch-show-message and silently discarded.
134    ;
135    ; Any MIME part not explicitly mentioned here will be handled by an
136    ; external viewer as configured in the various mailcap files.
137    (let ((mm-inline-media-tests '(
138                                   ("text/.*" ignore identity)
139                                   ("application/pgp-signature" ignore identity)
140                                   ("multipart/alternative" ignore identity)
141                                   ("multipart/mixed" ignore identity)
142                                   ("multipart/related" ignore identity)
143                                  )))
144      (mm-display-parts (mm-dissect-buffer)))))
145
146 (defun notmuch-foreach-mime-part (function mm-handle)
147   (cond ((stringp (car mm-handle))
148          (dolist (part (cdr mm-handle))
149            (notmuch-foreach-mime-part function part)))
150         ((bufferp (car mm-handle))
151          (funcall function mm-handle))
152         (t (dolist (part mm-handle)
153              (notmuch-foreach-mime-part function part)))))
154
155 (defun notmuch-count-attachments (mm-handle)
156   (let ((count 0))
157     (notmuch-foreach-mime-part
158      (lambda (p)
159        (let ((disposition (mm-handle-disposition p)))
160          (and (listp disposition)
161               (or (equal (car disposition) "attachment")
162                   (and (equal (car disposition) "inline")
163                        (assq 'filename disposition)))
164               (incf count))))
165      mm-handle)
166     count))
167
168 (defun notmuch-save-attachments (mm-handle &optional queryp)
169   (notmuch-foreach-mime-part
170    (lambda (p)
171      (let ((disposition (mm-handle-disposition p)))
172        (and (listp disposition)
173             (or (equal (car disposition) "attachment")
174                 (and (equal (car disposition) "inline")
175                      (assq 'filename disposition)))
176             (or (not queryp)
177                 (y-or-n-p
178                  (concat "Save '" (cdr (assq 'filename disposition)) "' ")))
179             (mm-save-part p))))
180    mm-handle))
181
182 (defun notmuch-show-save-attachments ()
183   "Save all attachments from the current message."
184   (interactive)
185   (with-current-notmuch-show-message
186    (let ((mm-handle (mm-dissect-buffer)))
187      (notmuch-save-attachments
188       mm-handle (> (notmuch-count-attachments mm-handle) 1))))
189   (message "Done"))
190
191 (defun notmuch-show-fontify-header ()
192   (let ((face (cond
193                ((looking-at "[Tt]o:")
194                 'message-header-to)
195                ((looking-at "[Bb]?[Cc][Cc]:")
196                 'message-header-cc)
197                ((looking-at "[Ss]ubject:")
198                 'message-header-subject)
199                ((looking-at "[Ff]rom:")
200                 'message-header-from)
201                (t
202                 'message-header-other))))
203
204     (overlay-put (make-overlay (point) (re-search-forward ":"))
205                  'face 'message-header-name)
206     (overlay-put (make-overlay (point) (re-search-forward ".*$"))
207                  'face face)))
208
209 (defun notmuch-show-colour-headers ()
210   "Apply some colouring to the current headers."
211   (goto-char (point-min))
212   (while (looking-at "^[A-Za-z][-A-Za-z0-9]*:")
213     (notmuch-show-fontify-header)
214     (forward-line)))
215
216 (defun notmuch-show-spaces-n (n)
217   "Return a string comprised of `n' spaces."
218   (make-string n ? ))
219
220 (defun notmuch-show-update-tags (tags)
221   "Update the displayed tags of the current message."
222   (save-excursion
223     (goto-char (notmuch-show-message-top))
224     (if (re-search-forward "(\\([^()]*\\))$" (line-end-position) t)
225         (let ((inhibit-read-only t))
226           (replace-match (concat "("
227                                  (propertize (mapconcat 'identity tags " ")
228                                              'face 'notmuch-tag-face)
229                                  ")"))))))
230
231 (defun notmuch-show-clean-address (address)
232   "Try to clean a single email ADDRESS for display.  Return
233 unchanged ADDRESS if parsing fails."
234   (condition-case nil
235     (let* ((parsed (mail-header-parse-address address))
236            (address (car parsed))
237            (name (cdr parsed)))
238       ;; Remove double quotes. They might be required during transport,
239       ;; but we don't need to see them.
240       (when name
241         (setq name (replace-regexp-in-string "\"" "" name)))
242       ;; If the address is 'foo@bar.com <foo@bar.com>' then show just
243       ;; 'foo@bar.com'.
244       (when (string= name address)
245         (setq name nil))
246
247       (if (not name)
248         address
249         (concat name " <" address ">")))
250     (error address)))
251
252 (defun notmuch-show-insert-headerline (headers date tags depth)
253   "Insert a notmuch style headerline based on HEADERS for a
254 message at DEPTH in the current thread."
255   (let ((start (point)))
256     (insert (notmuch-show-spaces-n (* notmuch-show-indent-messages-width depth))
257             (notmuch-show-clean-address (plist-get headers :From))
258             " ("
259             date
260             ") ("
261             (propertize (mapconcat 'identity tags " ")
262                         'face 'notmuch-tag-face)
263             ")\n")
264     (overlay-put (make-overlay start (point)) 'face 'notmuch-message-summary-face)))
265
266 (defun notmuch-show-insert-header (header header-value)
267   "Insert a single header."
268   (insert header ": " header-value "\n"))
269
270 (defun notmuch-show-insert-headers (headers)
271   "Insert the headers of the current message."
272   (let ((start (point)))
273     (mapc (lambda (header)
274             (let* ((header-symbol (intern (concat ":" header)))
275                    (header-value (plist-get headers header-symbol)))
276               (if (and header-value
277                        (not (string-equal "" header-value)))
278                   (notmuch-show-insert-header header header-value))))
279           notmuch-message-headers)
280     (save-excursion
281       (save-restriction
282         (narrow-to-region start (point-max))
283         (run-hooks 'notmuch-show-markup-headers-hook)))))
284
285 (define-button-type 'notmuch-show-part-button-type
286   'action 'notmuch-show-part-button-action
287   'follow-link t
288   'face 'message-mml)
289
290 (defun notmuch-show-insert-part-header (nth content-type declared-type &optional name comment)
291   (let ((button))
292     (setq button
293           (insert-button
294            (concat "[ "
295                    (if name (concat name ": ") "")
296                    declared-type
297                    (if (not (string-equal declared-type content-type))
298                        (concat " (as " content-type ")")
299                      "")
300                    (or comment "")
301                    " ]")
302            :type 'notmuch-show-part-button-type
303            :notmuch-part nth
304            :notmuch-filename name))
305     (insert "\n")
306     ;; return button
307     button))
308
309 ;; Functions handling particular MIME parts.
310
311 (defun notmuch-show-save-part (message-id nth &optional filename)
312   (let ((process-crypto notmuch-show-process-crypto))
313     (with-temp-buffer
314       (setq notmuch-show-process-crypto process-crypto)
315       ;; Always acquires the part via `notmuch part', even if it is
316       ;; available in the JSON output.
317       (insert (notmuch-show-get-bodypart-internal message-id nth))
318       (let ((file (read-file-name
319                    "Filename to save as: "
320                    (or mailcap-download-directory "~/")
321                    nil nil
322                    filename)))
323         ;; Don't re-compress .gz & al.  Arguably we should make
324         ;; `file-name-handler-alist' nil, but that would chop
325         ;; ange-ftp, which is reasonable to use here.
326         (mm-write-region (point-min) (point-max) file nil nil nil 'no-conversion t)))))
327
328 (defun notmuch-show-mm-display-part-inline (msg part nth content-type)
329   "Use the mm-decode/mm-view functions to display a part in the
330 current buffer, if possible."
331   (let ((display-buffer (current-buffer)))
332     (with-temp-buffer
333       (let* ((charset (plist-get part :content-charset))
334              (handle (mm-make-handle (current-buffer) `(,content-type (charset . ,charset)))))
335         (if (and (mm-inlinable-p handle)
336                  (mm-inlined-p handle))
337             (let ((content (notmuch-show-get-bodypart-content msg part nth)))
338               (insert content)
339               (set-buffer display-buffer)
340               (mm-display-part handle)
341               t)
342           nil)))))
343
344 (defvar notmuch-show-multipart/alternative-discouraged
345   '(
346     ;; Avoid HTML parts.
347     "text/html"
348     ;; multipart/related usually contain a text/html part and some associated graphics.
349     "multipart/related"
350     ))
351
352 (defun notmuch-show-multipart/*-to-list (part)
353   (mapcar (lambda (inner-part) (plist-get inner-part :content-type))
354           (plist-get part :content)))
355
356 (defun notmuch-show-multipart/alternative-choose (types)
357   ;; Based on `mm-preferred-alternative-precedence'.
358   (let ((seq types))
359     (dolist (pref (reverse notmuch-show-multipart/alternative-discouraged))
360       (dolist (elem (copy-sequence seq))
361         (when (string-match pref elem)
362           (setq seq (nconc (delete elem seq) (list elem))))))
363     seq))
364
365 (defun notmuch-show-insert-part-multipart/alternative (msg part content-type nth depth declared-type)
366   (notmuch-show-insert-part-header nth declared-type content-type nil)
367   (let ((chosen-type (car (notmuch-show-multipart/alternative-choose (notmuch-show-multipart/*-to-list part))))
368         (inner-parts (plist-get part :content))
369         (start (point)))
370     ;; This inserts all parts of the chosen type rather than just one,
371     ;; but it's not clear that this is the wrong thing to do - which
372     ;; should be chosen if there are more than one that match?
373     (mapc (lambda (inner-part)
374             (let ((inner-type (plist-get inner-part :content-type)))
375               (if (or notmuch-show-all-multipart/alternative-parts
376                       (string= chosen-type inner-type))
377                   (notmuch-show-insert-bodypart msg inner-part depth)
378                 (notmuch-show-insert-part-header (plist-get inner-part :id) inner-type inner-type nil " (not shown)"))))
379           inner-parts)
380
381     (when notmuch-show-indent-multipart
382       (indent-rigidly start (point) 1)))
383   t)
384
385 (defun notmuch-show-setup-w3m ()
386   "Instruct w3m how to retrieve content from a \"related\" part of a message."
387   (interactive)
388   (if (boundp 'w3m-cid-retrieve-function-alist)
389     (unless (assq 'notmuch-show-mode w3m-cid-retrieve-function-alist)
390       (push (cons 'notmuch-show-mode 'notmuch-show-w3m-cid-retrieve)
391             w3m-cid-retrieve-function-alist)))
392   (setq mm-inline-text-html-with-images t))
393
394 (defvar w3m-current-buffer) ;; From `w3m.el'.
395 (defvar notmuch-show-w3m-cid-store nil)
396 (make-variable-buffer-local 'notmuch-show-w3m-cid-store)
397
398 (defun notmuch-show-w3m-cid-store-internal (content-id
399                                             message-id
400                                             part-number
401                                             content-type
402                                             content)
403   (push (list content-id
404               message-id
405               part-number
406               content-type
407               content)
408         notmuch-show-w3m-cid-store))
409
410 (defun notmuch-show-w3m-cid-store (msg part)
411   (let ((content-id (plist-get part :content-id)))
412     (when content-id
413       (notmuch-show-w3m-cid-store-internal (concat "cid:" content-id)
414                                            (plist-get msg :id)
415                                            (plist-get part :id)
416                                            (plist-get part :content-type)
417                                            nil))))
418
419 (defun notmuch-show-w3m-cid-retrieve (url &rest args)
420   (let ((matching-part (with-current-buffer w3m-current-buffer
421                          (assoc url notmuch-show-w3m-cid-store))))
422     (if matching-part
423         (let ((message-id (nth 1 matching-part))
424               (part-number (nth 2 matching-part))
425               (content-type (nth 3 matching-part))
426               (content (nth 4 matching-part)))
427           ;; If we don't already have the content, get it and cache
428           ;; it, as some messages reference the same cid: part many
429           ;; times (hundreds!), which results in many calls to
430           ;; `notmuch part'.
431           (unless content
432             (setq content (notmuch-show-get-bodypart-internal (concat "id:" message-id)
433                                                               part-number))
434             (with-current-buffer w3m-current-buffer
435               (notmuch-show-w3m-cid-store-internal url
436                                                    message-id
437                                                    part-number
438                                                    content-type
439                                                    content)))
440           (insert content)
441           content-type)
442       nil)))
443
444 (defun notmuch-show-insert-part-multipart/related (msg part content-type nth depth declared-type)
445   (notmuch-show-insert-part-header nth declared-type content-type nil)
446   (let ((inner-parts (plist-get part :content))
447         (start (point)))
448
449     ;; We assume that the first part is text/html and the remainder
450     ;; things that it references.
451
452     ;; Stash the non-primary parts.
453     (mapc (lambda (part)
454             (notmuch-show-w3m-cid-store msg part))
455           (cdr inner-parts))
456
457     ;; Render the primary part.
458     (notmuch-show-insert-bodypart msg (car inner-parts) depth)
459
460     (when notmuch-show-indent-multipart
461       (indent-rigidly start (point) 1)))
462   t)
463
464 (defun notmuch-show-insert-part-multipart/signed (msg part content-type nth depth declared-type)
465   (let ((button (notmuch-show-insert-part-header nth declared-type content-type nil)))
466     (button-put button 'face 'notmuch-crypto-part-header)
467     ;; add signature status button if sigstatus provided
468     (if (plist-member part :sigstatus)
469         (let* ((from (notmuch-show-get-header :From msg))
470                (sigstatus (car (plist-get part :sigstatus))))
471           (notmuch-crypto-insert-sigstatus-button sigstatus from))
472       ;; if we're not adding sigstatus, tell the user how they can get it
473       (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts.")))
474
475   (let ((inner-parts (plist-get part :content))
476         (start (point)))
477     ;; Show all of the parts.
478     (mapc (lambda (inner-part)
479             (notmuch-show-insert-bodypart msg inner-part depth))
480           inner-parts)
481
482     (when notmuch-show-indent-multipart
483       (indent-rigidly start (point) 1)))
484   t)
485
486 (defun notmuch-show-insert-part-multipart/encrypted (msg part content-type nth depth declared-type)
487   (let ((button (notmuch-show-insert-part-header nth declared-type content-type nil)))
488     (button-put button 'face 'notmuch-crypto-part-header)
489     ;; add encryption status button if encstatus specified
490     (if (plist-member part :encstatus)
491         (let ((encstatus (car (plist-get part :encstatus))))
492           (notmuch-crypto-insert-encstatus-button encstatus)
493           ;; add signature status button if sigstatus specified
494           (if (plist-member part :sigstatus)
495               (let* ((from (notmuch-show-get-header :From msg))
496                      (sigstatus (car (plist-get part :sigstatus))))
497                 (notmuch-crypto-insert-sigstatus-button sigstatus from))))
498       ;; if we're not adding encstatus, tell the user how they can get it
499       (button-put button 'help-echo "Set notmuch-crypto-process-mime to process cryptographic mime parts.")))
500
501   (let ((inner-parts (plist-get part :content))
502         (start (point)))
503     ;; Show all of the parts.
504     (mapc (lambda (inner-part)
505             (notmuch-show-insert-bodypart msg inner-part depth))
506           inner-parts)
507
508     (when notmuch-show-indent-multipart
509       (indent-rigidly start (point) 1)))
510   t)
511
512 (defun notmuch-show-insert-part-multipart/* (msg part content-type nth depth declared-type)
513   (notmuch-show-insert-part-header nth declared-type content-type nil)
514   (let ((inner-parts (plist-get part :content))
515         (start (point)))
516     ;; Show all of the parts.
517     (mapc (lambda (inner-part)
518             (notmuch-show-insert-bodypart msg inner-part depth))
519           inner-parts)
520
521     (when notmuch-show-indent-multipart
522       (indent-rigidly start (point) 1)))
523   t)
524
525 (defun notmuch-show-insert-part-message/rfc822 (msg part content-type nth depth declared-type)
526   (notmuch-show-insert-part-header nth declared-type content-type nil)
527   (let* ((message (car (plist-get part :content)))
528          (body (car (plist-get message :body)))
529          (start (point)))
530
531     ;; Override `notmuch-message-headers' to force `From' to be
532     ;; displayed.
533     (let ((notmuch-message-headers '("From" "Subject" "To" "Cc" "Date")))
534       (notmuch-show-insert-headers (plist-get message :headers)))
535
536     ;; Blank line after headers to be compatible with the normal
537     ;; message display.
538     (insert "\n")
539
540     ;; Show the body
541     (notmuch-show-insert-bodypart msg body depth)
542
543     (when notmuch-show-indent-multipart
544       (indent-rigidly start (point) 1)))
545   t)
546
547 (defun notmuch-show-insert-part-text/plain (msg part content-type nth depth declared-type)
548   (let ((start (point)))
549     ;; If this text/plain part is not the first part in the message,
550     ;; insert a header to make this clear.
551     (if (> nth 1)
552         (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename)))
553     (insert (notmuch-show-get-bodypart-content msg part nth))
554     (save-excursion
555       (save-restriction
556         (narrow-to-region start (point-max))
557         (run-hook-with-args 'notmuch-show-insert-text/plain-hook msg depth))))
558   t)
559
560 (defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth declared-type)
561   (notmuch-show-insert-part-header nth declared-type content-type (plist-get part :filename))
562   (insert (with-temp-buffer
563             (insert (notmuch-show-get-bodypart-content msg part nth))
564             (goto-char (point-min))
565             (let ((file (make-temp-file "notmuch-ical"))
566                   result)
567               (icalendar--convert-ical-to-diary
568                (icalendar--read-element nil nil)
569                file t)
570               (set-buffer (get-file-buffer file))
571               (setq result (buffer-substring (point-min) (point-max)))
572               (set-buffer-modified-p nil)
573               (kill-buffer (current-buffer))
574               (delete-file file)
575               result)))
576   t)
577
578 (defun notmuch-show-insert-part-application/octet-stream (msg part content-type nth depth declared-type)
579   ;; If we can deduce a MIME type from the filename of the attachment,
580   ;; do so and pass it on to the handler for that type.
581   (if (plist-get part :filename)
582       (let ((extension (file-name-extension (plist-get part :filename)))
583             mime-type)
584         (if extension
585             (progn
586               (mailcap-parse-mimetypes)
587               (setq mime-type (mailcap-extension-to-mime extension))
588               (if (and mime-type
589                        (not (string-equal mime-type "application/octet-stream")))
590                   (notmuch-show-insert-bodypart-internal msg part mime-type nth depth content-type)
591                 nil))
592           nil))))
593
594 ;; Handler for wash generated inline patch fake parts.
595 (defun notmuch-show-insert-part-inline-patch-fake-part (msg part content-type nth depth declared-type)
596   (notmuch-show-insert-part-*/* msg part "text/x-diff" nth depth "inline patch"))
597
598 (defun notmuch-show-insert-part-*/* (msg part content-type nth depth declared-type)
599   ;; This handler _must_ succeed - it is the handler of last resort.
600   (notmuch-show-insert-part-header nth content-type declared-type (plist-get part :filename))
601   (notmuch-show-mm-display-part-inline msg part nth content-type)
602   t)
603
604 ;; Functions for determining how to handle MIME parts.
605
606 (defun notmuch-show-split-content-type (content-type)
607   (split-string content-type "/"))
608
609 (defun notmuch-show-handlers-for (content-type)
610   "Return a list of content handlers for a part of type CONTENT-TYPE."
611   (let (result)
612     (mapc (lambda (func)
613             (if (functionp func)
614                 (push func result)))
615           ;; Reverse order of prefrence.
616           (list (intern (concat "notmuch-show-insert-part-*/*"))
617                 (intern (concat
618                          "notmuch-show-insert-part-"
619                          (car (notmuch-show-split-content-type content-type))
620                          "/*"))
621                 (intern (concat "notmuch-show-insert-part-" content-type))))
622     result))
623
624 ;; Helper for parts which are generally not included in the default
625 ;; JSON output.
626 ;; Uses the buffer-local variable notmuch-show-process-crypto to
627 ;; determine if parts should be decrypted first.
628 (defun notmuch-show-get-bodypart-internal (message-id part-number)
629   (let ((args '("show" "--format=raw"))
630         (part-arg (format "--part=%s" part-number)))
631     (setq args (append args (list part-arg)))
632     (if notmuch-show-process-crypto
633         (setq args (append args '("--decrypt"))))
634     (setq args (append args (list message-id)))
635     (with-temp-buffer
636       (let ((coding-system-for-read 'no-conversion))
637         (progn
638           (apply 'call-process (append (list notmuch-command nil (list t nil) nil) args))
639           (buffer-string))))))
640
641 (defun notmuch-show-get-bodypart-content (msg part nth)
642   (or (plist-get part :content)
643       (notmuch-show-get-bodypart-internal (concat "id:" (plist-get msg :id)) nth)))
644
645 ;; \f
646
647 (defun notmuch-show-insert-bodypart-internal (msg part content-type nth depth declared-type)
648   (let ((handlers (notmuch-show-handlers-for content-type)))
649     ;; Run the content handlers until one of them returns a non-nil
650     ;; value.
651     (while (and handlers
652                 (not (funcall (car handlers) msg part content-type nth depth declared-type)))
653       (setq handlers (cdr handlers))))
654   t)
655
656 (defun notmuch-show-insert-bodypart (msg part depth)
657   "Insert the body part PART at depth DEPTH in the current thread."
658   (let ((content-type (downcase (plist-get part :content-type)))
659         (nth (plist-get part :id)))
660     (notmuch-show-insert-bodypart-internal msg part content-type nth depth content-type))
661   ;; Some of the body part handlers leave point somewhere up in the
662   ;; part, so we make sure that we're down at the end.
663   (goto-char (point-max))
664   ;; Ensure that the part ends with a carriage return.
665   (unless (bolp)
666     (insert "\n")))
667
668 (defun notmuch-show-insert-body (msg body depth)
669   "Insert the body BODY at depth DEPTH in the current thread."
670   (mapc (lambda (part) (notmuch-show-insert-bodypart msg part depth)) body))
671
672 (defun notmuch-show-make-symbol (type)
673   (make-symbol (concat "notmuch-show-" type)))
674
675 (defun notmuch-show-strip-re (string)
676   (replace-regexp-in-string "\\([Rr]e: *\\)+" "" string))
677
678 (defvar notmuch-show-previous-subject "")
679 (make-variable-buffer-local 'notmuch-show-previous-subject)
680
681 (defun notmuch-show-insert-msg (msg depth)
682   "Insert the message MSG at depth DEPTH in the current thread."
683   (let* ((headers (plist-get msg :headers))
684          ;; Indentation causes the buffer offset of the start/end
685          ;; points to move, so we must use markers.
686          message-start message-end
687          content-start content-end
688          headers-start headers-end
689          body-start body-end
690          (headers-invis-spec (notmuch-show-make-symbol "header"))
691          (message-invis-spec (notmuch-show-make-symbol "message"))
692          (bare-subject (notmuch-show-strip-re (plist-get headers :Subject))))
693
694     ;; Set `buffer-invisibility-spec' to `nil' (a list), otherwise
695     ;; removing items from `buffer-invisibility-spec' (which is what
696     ;; `notmuch-show-headers-visible' and
697     ;; `notmuch-show-message-visible' do) is a no-op and has no
698     ;; effect. This caused threads with only matching messages to have
699     ;; those messages hidden initially because
700     ;; `buffer-invisibility-spec' stayed `t'.
701     ;;
702     ;; This needs to be set here (rather than just above the call to
703     ;; `notmuch-show-headers-visible') because some of the part
704     ;; rendering or body washing functions
705     ;; (e.g. `notmuch-wash-text/plain-citations') manipulate
706     ;; `buffer-invisibility-spec').
707     (when (eq buffer-invisibility-spec t)
708       (setq buffer-invisibility-spec nil))
709
710     (setq message-start (point-marker))
711
712     (notmuch-show-insert-headerline headers
713                                     (or (if notmuch-show-relative-dates
714                                             (plist-get msg :date_relative)
715                                           nil)
716                                         (plist-get headers :Date))
717                                     (plist-get msg :tags) depth)
718
719     (setq content-start (point-marker))
720
721     (plist-put msg :headers-invis-spec headers-invis-spec)
722     (plist-put msg :message-invis-spec message-invis-spec)
723
724     ;; Set `headers-start' to point after the 'Subject:' header to be
725     ;; compatible with the existing implementation. This just sets it
726     ;; to after the first header.
727     (notmuch-show-insert-headers headers)
728     ;; Headers should include a blank line (backwards compatibility).
729     (insert "\n")
730     (save-excursion
731       (goto-char content-start)
732       ;; If the subject of this message is the same as that of the
733       ;; previous message, don't display it when this message is
734       ;; collapsed.
735       (when (not (string= notmuch-show-previous-subject
736                           bare-subject))
737         (forward-line 1))
738       (setq headers-start (point-marker)))
739     (setq headers-end (point-marker))
740
741     (setq notmuch-show-previous-subject bare-subject)
742
743     (setq body-start (point-marker))
744     (notmuch-show-insert-body msg (plist-get msg :body) depth)
745     ;; Ensure that the body ends with a newline.
746     (unless (bolp)
747       (insert "\n"))
748     (setq body-end (point-marker))
749     (setq content-end (point-marker))
750
751     ;; Indent according to the depth in the thread.
752     (indent-rigidly content-start content-end (* notmuch-show-indent-messages-width depth))
753
754     (setq message-end (point-max-marker))
755
756     ;; Save the extents of this message over the whole text of the
757     ;; message.
758     (put-text-property message-start message-end :notmuch-message-extent (cons message-start message-end))
759
760     (let ((headers-overlay (make-overlay headers-start headers-end))
761           (invis-specs (list headers-invis-spec message-invis-spec)))
762       (overlay-put headers-overlay 'invisible invis-specs)
763       (overlay-put headers-overlay 'priority 10))
764     (overlay-put (make-overlay body-start body-end) 'invisible message-invis-spec)
765
766     ;; Save the properties for this message. Currently this saves the
767     ;; entire message (augmented it with other stuff), which seems
768     ;; like overkill. We might save a reduced subset (for example, not
769     ;; the content).
770     (notmuch-show-set-message-properties msg)
771
772     ;; Set header visibility.
773     (notmuch-show-headers-visible msg notmuch-message-headers-visible)
774
775     ;; Message visibility depends on whether it matched the search
776     ;; criteria.
777     (notmuch-show-message-visible msg (plist-get msg :match))))
778
779 (defun notmuch-show-insert-tree (tree depth)
780   "Insert the message tree TREE at depth DEPTH in the current thread."
781   (let ((msg (car tree))
782         (replies (cadr tree)))
783     (notmuch-show-insert-msg msg depth)
784     (notmuch-show-insert-thread replies (1+ depth))))
785
786 (defun notmuch-show-insert-thread (thread depth)
787   "Insert the thread THREAD at depth DEPTH in the current forest."
788   (mapc (lambda (tree) (notmuch-show-insert-tree tree depth)) thread))
789
790 (defun notmuch-show-insert-forest (forest)
791   "Insert the forest of threads FOREST."
792   (mapc (lambda (thread) (notmuch-show-insert-thread thread 0)) forest))
793
794 (defvar notmuch-show-thread-id nil)
795 (make-variable-buffer-local 'notmuch-show-thread-id)
796 (defvar notmuch-show-parent-buffer nil)
797 (make-variable-buffer-local 'notmuch-show-parent-buffer)
798 (defvar notmuch-show-query-context nil)
799 (make-variable-buffer-local 'notmuch-show-query-context)
800 (defvar notmuch-show-buffer-name nil)
801 (make-variable-buffer-local 'notmuch-show-buffer-name)
802
803 (defun notmuch-show-buttonise-links (start end)
804   "Buttonise URLs and mail addresses between START and END.
805
806 This also turns id:\"<message id>\"-parts into buttons for
807 a corresponding notmuch search."
808   (goto-address-fontify-region start end)
809   (save-excursion
810     (goto-char start)
811     (while (re-search-forward "id:\\(\"?\\)[^[:space:]\"]+\\1" end t)
812       ;; remove the overlay created by goto-address-mode
813       (remove-overlays (match-beginning 0) (match-end 0) 'goto-address t)
814       (make-text-button (match-beginning 0) (match-end 0)
815                         'action `(lambda (arg)
816                                    (notmuch-show ,(match-string-no-properties 0)))
817                         'follow-link t
818                         'help-echo "Mouse-1, RET: search for this message"
819                         'face goto-address-mail-face))))
820
821 ;;;###autoload
822 (defun notmuch-show (thread-id &optional parent-buffer query-context buffer-name crypto-switch)
823   "Run \"notmuch show\" with the given thread ID and display results.
824
825 The optional PARENT-BUFFER is the notmuch-search buffer from
826 which this notmuch-show command was executed, (so that the
827 next thread from that buffer can be show when done with this
828 one).
829
830 The optional QUERY-CONTEXT is a notmuch search term. Only
831 messages from the thread matching this search term are shown if
832 non-nil.
833
834 The optional BUFFER-NAME provides the name of the buffer in
835 which the message thread is shown. If it is nil (which occurs
836 when the command is called interactively) the argument to the
837 function is used.
838
839 The optional CRYPTO-SWITCH toggles the value of the
840 notmuch-crypto-process-mime customization variable for this show
841 buffer."
842   (interactive "sNotmuch show: ")
843   (let* ((process-crypto (if crypto-switch
844                              (not notmuch-crypto-process-mime)
845                            notmuch-crypto-process-mime)))
846     (notmuch-show-worker thread-id parent-buffer query-context buffer-name process-crypto)))
847
848 (defun notmuch-show-worker (thread-id parent-buffer query-context buffer-name process-crypto)
849   (let* ((buffer-name (generate-new-buffer-name
850                        (or buffer-name
851                            (concat "*notmuch-" thread-id "*"))))
852          (buffer (get-buffer-create buffer-name))
853          (inhibit-read-only t))
854     (switch-to-buffer buffer)
855     (notmuch-show-mode)
856     ;; Don't track undo information for this buffer
857     (set 'buffer-undo-list t)
858
859     (setq notmuch-show-thread-id thread-id)
860     (setq notmuch-show-parent-buffer parent-buffer)
861     (setq notmuch-show-query-context query-context)
862     (setq notmuch-show-buffer-name buffer-name)
863     (setq notmuch-show-process-crypto process-crypto)
864
865     (erase-buffer)
866     (goto-char (point-min))
867     (save-excursion
868       (let* ((basic-args (list thread-id))
869              (args (if query-context
870                        (append (list "\'") basic-args (list "and (" query-context ")\'"))
871                      (append (list "\'") basic-args (list "\'")))))
872         (notmuch-show-insert-forest (notmuch-query-get-threads args))
873         ;; If the query context reduced the results to nothing, run
874         ;; the basic query.
875         (when (and (eq (buffer-size) 0)
876                    query-context)
877           (notmuch-show-insert-forest
878            (notmuch-query-get-threads basic-args))))
879
880       (jit-lock-register #'notmuch-show-buttonise-links)
881
882       (run-hooks 'notmuch-show-hook))
883
884     ;; Move straight to the first open message
885     (unless (notmuch-show-message-visible-p)
886       (notmuch-show-next-open-message))
887
888     ;; Set the header line to the subject of the first open message.
889     (setq header-line-format (notmuch-show-strip-re (notmuch-show-get-subject)))
890
891     (notmuch-show-mark-read)))
892
893 (defun notmuch-show-refresh-view (&optional crypto-switch)
894   "Refresh the current view (with crypto switch if prefix given).
895
896 Kills the current buffer and reruns notmuch show with the same
897 thread id.  If a prefix is given, crypto processing is toggled."
898   (interactive "P")
899   (let ((thread-id notmuch-show-thread-id)
900         (parent-buffer notmuch-show-parent-buffer)
901         (query-context notmuch-show-query-context)
902         (buffer-name notmuch-show-buffer-name)
903         (process-crypto (if crypto-switch
904                             (not notmuch-show-process-crypto)
905                           notmuch-show-process-crypto)))
906     (notmuch-kill-this-buffer)
907     (notmuch-show-worker thread-id parent-buffer query-context buffer-name process-crypto)))
908
909 (defvar notmuch-show-stash-map
910   (let ((map (make-sparse-keymap)))
911     (define-key map "c" 'notmuch-show-stash-cc)
912     (define-key map "d" 'notmuch-show-stash-date)
913     (define-key map "F" 'notmuch-show-stash-filename)
914     (define-key map "f" 'notmuch-show-stash-from)
915     (define-key map "i" 'notmuch-show-stash-message-id)
916     (define-key map "I" 'notmuch-show-stash-message-id-stripped)
917     (define-key map "s" 'notmuch-show-stash-subject)
918     (define-key map "T" 'notmuch-show-stash-tags)
919     (define-key map "t" 'notmuch-show-stash-to)
920     map)
921   "Submap for stash commands")
922 (fset 'notmuch-show-stash-map notmuch-show-stash-map)
923
924 (defvar notmuch-show-mode-map
925       (let ((map (make-sparse-keymap)))
926         (define-key map "?" 'notmuch-help)
927         (define-key map "q" 'notmuch-kill-this-buffer)
928         (define-key map (kbd "<C-tab>") 'widget-backward)
929         (define-key map (kbd "M-TAB") 'notmuch-show-previous-button)
930         (define-key map (kbd "<backtab>") 'notmuch-show-previous-button)
931         (define-key map (kbd "TAB") 'notmuch-show-next-button)
932         (define-key map "s" 'notmuch-search)
933         (define-key map "m" 'notmuch-mua-new-mail)
934         (define-key map "f" 'notmuch-show-forward-message)
935         (define-key map "r" 'notmuch-show-reply-sender)
936         (define-key map "R" 'notmuch-show-reply)
937         (define-key map "|" 'notmuch-show-pipe-message)
938         (define-key map "w" 'notmuch-show-save-attachments)
939         (define-key map "V" 'notmuch-show-view-raw-message)
940         (define-key map "v" 'notmuch-show-view-all-mime-parts)
941         (define-key map "c" 'notmuch-show-stash-map)
942         (define-key map "=" 'notmuch-show-refresh-view)
943         (define-key map "h" 'notmuch-show-toggle-headers)
944         (define-key map "-" 'notmuch-show-remove-tag)
945         (define-key map "+" 'notmuch-show-add-tag)
946         (define-key map "x" 'notmuch-show-archive-thread-then-exit)
947         (define-key map "a" 'notmuch-show-archive-thread)
948         (define-key map "N" 'notmuch-show-next-message)
949         (define-key map "P" 'notmuch-show-previous-message)
950         (define-key map "n" 'notmuch-show-next-open-message)
951         (define-key map "p" 'notmuch-show-previous-open-message)
952         (define-key map (kbd "DEL") 'notmuch-show-rewind)
953         (define-key map " " 'notmuch-show-advance-and-archive)
954         (define-key map (kbd "M-RET") 'notmuch-show-open-or-close-all)
955         (define-key map (kbd "RET") 'notmuch-show-toggle-message)
956         map)
957       "Keymap for \"notmuch show\" buffers.")
958 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
959
960 (defun notmuch-show-mode ()
961   "Major mode for viewing a thread with notmuch.
962
963 This buffer contains the results of the \"notmuch show\" command
964 for displaying a single thread of email from your email archives.
965
966 By default, various components of email messages, (citations,
967 signatures, already-read messages), are hidden. You can make
968 these parts visible by clicking with the mouse button or by
969 pressing RET after positioning the cursor on a hidden part, (for
970 which \\[notmuch-show-next-button] and \\[notmuch-show-previous-button] are helpful).
971
972 Reading the thread sequentially is well-supported by pressing
973 \\[notmuch-show-advance-and-archive]. This will scroll the current message (if necessary), advance
974 to the next message, or advance to the next thread (if already on
975 the last message of a thread).
976
977 Other commands are available to read or manipulate the thread
978 more selectively, (such as '\\[notmuch-show-next-message]' and '\\[notmuch-show-previous-message]' to advance to messages
979 without removing any tags, and '\\[notmuch-show-archive-thread]' to archive an entire thread
980 without scrolling through with \\[notmuch-show-advance-and-archive]).
981
982 You can add or remove arbitrary tags from the current message with
983 '\\[notmuch-show-add-tag]' or '\\[notmuch-show-remove-tag]'.
984
985 All currently available key bindings:
986
987 \\{notmuch-show-mode-map}"
988   (interactive)
989   (kill-all-local-variables)
990   (use-local-map notmuch-show-mode-map)
991   (setq major-mode 'notmuch-show-mode
992         mode-name "notmuch-show")
993   (setq buffer-read-only t
994         truncate-lines t))
995
996 (defun notmuch-show-move-to-message-top ()
997   (goto-char (notmuch-show-message-top)))
998
999 (defun notmuch-show-move-to-message-bottom ()
1000   (goto-char (notmuch-show-message-bottom)))
1001
1002 (defun notmuch-show-message-adjust ()
1003   (recenter 0))
1004
1005 ;; Movement related functions.
1006
1007 ;; There's some strangeness here where a text property applied to a
1008 ;; region a->b is not found when point is at b. We walk backwards
1009 ;; until finding the property.
1010 (defun notmuch-show-message-extent ()
1011   (let (r)
1012     (save-excursion
1013       (while (not (setq r (get-text-property (point) :notmuch-message-extent)))
1014         (backward-char)))
1015     r))
1016
1017 (defun notmuch-show-message-top ()
1018   (car (notmuch-show-message-extent)))
1019
1020 (defun notmuch-show-message-bottom ()
1021   (cdr (notmuch-show-message-extent)))
1022
1023 (defun notmuch-show-goto-message-next ()
1024   (let ((start (point)))
1025     (notmuch-show-move-to-message-bottom)
1026     (if (not (eobp))
1027         t
1028       (goto-char start)
1029       nil)))
1030
1031 (defun notmuch-show-goto-message-previous ()
1032   (notmuch-show-move-to-message-top)
1033   (if (bobp)
1034       nil
1035     (backward-char)
1036     (notmuch-show-move-to-message-top)
1037     t))
1038
1039 ;; Functions relating to the visibility of messages and their
1040 ;; components.
1041
1042 (defun notmuch-show-element-visible (props visible-p spec-property)
1043   (let ((spec (plist-get props spec-property)))
1044     (if visible-p
1045         (remove-from-invisibility-spec spec)
1046       (add-to-invisibility-spec spec))))
1047
1048 (defun notmuch-show-message-visible (props visible-p)
1049   (notmuch-show-element-visible props visible-p :message-invis-spec)
1050   (notmuch-show-set-prop :message-visible visible-p props))
1051
1052 (defun notmuch-show-headers-visible (props visible-p)
1053   (notmuch-show-element-visible props visible-p :headers-invis-spec)
1054   (notmuch-show-set-prop :headers-visible visible-p props))
1055
1056 ;; Functions for setting and getting attributes of the current
1057 ;; message.
1058
1059 (defun notmuch-show-set-message-properties (props)
1060   (save-excursion
1061     (notmuch-show-move-to-message-top)
1062     (put-text-property (point) (+ (point) 1) :notmuch-message-properties props)))
1063
1064 (defun notmuch-show-get-message-properties ()
1065   "Return the properties of the current message as a plist.
1066
1067 Some useful entries are:
1068 :headers - Property list containing the headers :Date, :Subject, :From, etc.
1069 :body - Body of the message
1070 :tags - Tags for this message"
1071   (save-excursion
1072     (notmuch-show-move-to-message-top)
1073     (get-text-property (point) :notmuch-message-properties)))
1074
1075 (defun notmuch-show-set-prop (prop val &optional props)
1076   (let ((inhibit-read-only t)
1077         (props (or props
1078                    (notmuch-show-get-message-properties))))
1079     (plist-put props prop val)
1080     (notmuch-show-set-message-properties props)))
1081
1082 (defun notmuch-show-get-prop (prop &optional props)
1083   (let ((props (or props
1084                    (notmuch-show-get-message-properties))))
1085     (plist-get props prop)))
1086
1087 (defun notmuch-show-get-message-id ()
1088   "Return the message id of the current message."
1089   (concat "id:\"" (notmuch-show-get-prop :id) "\""))
1090
1091 ;; dme: Would it make sense to use a macro for many of these?
1092
1093 (defun notmuch-show-get-filename ()
1094   "Return the filename of the current message."
1095   (notmuch-show-get-prop :filename))
1096
1097 (defun notmuch-show-get-header (header &optional props)
1098   "Return the named header of the current message, if any."
1099   (plist-get (notmuch-show-get-prop :headers props) header))
1100
1101 (defun notmuch-show-get-cc ()
1102   (notmuch-show-get-header :Cc))
1103
1104 (defun notmuch-show-get-date ()
1105   (notmuch-show-get-header :Date))
1106
1107 (defun notmuch-show-get-from ()
1108   (notmuch-show-get-header :From))
1109
1110 (defun notmuch-show-get-subject ()
1111   (notmuch-show-get-header :Subject))
1112
1113 (defun notmuch-show-get-to ()
1114   (notmuch-show-get-header :To))
1115
1116 (defun notmuch-show-set-tags (tags)
1117   "Set the tags of the current message."
1118   (notmuch-show-set-prop :tags tags)
1119   (notmuch-show-update-tags tags))
1120
1121 (defun notmuch-show-get-tags ()
1122   "Return the tags of the current message."
1123   (notmuch-show-get-prop :tags))
1124
1125 (defun notmuch-show-message-visible-p ()
1126   "Is the current message visible?"
1127   (notmuch-show-get-prop :message-visible))
1128
1129 (defun notmuch-show-headers-visible-p ()
1130   "Are the headers of the current message visible?"
1131   (notmuch-show-get-prop :headers-visible))
1132
1133 (defun notmuch-show-mark-read ()
1134   "Mark the current message as read."
1135   (notmuch-show-remove-tag "unread"))
1136
1137 ;; Functions for getting attributes of several messages in the current
1138 ;; thread.
1139
1140 (defun notmuch-show-get-message-ids-for-open-messages ()
1141   "Return a list of all message IDs for open messages in the current thread."
1142   (save-excursion
1143     (let (message-ids done)
1144       (goto-char (point-min))
1145       (while (not done)
1146         (if (notmuch-show-message-visible-p)
1147             (setq message-ids (append message-ids (list (notmuch-show-get-message-id)))))
1148         (setq done (not (notmuch-show-goto-message-next)))
1149         )
1150       message-ids
1151       )))
1152
1153 ;; Commands typically bound to keys.
1154
1155 (defun notmuch-show-advance ()
1156   "Advance through thread.
1157
1158 If the current message in the thread is not yet fully visible,
1159 scroll by a near screenful to read more of the message.
1160
1161 Otherwise, (the end of the current message is already within the
1162 current window), advance to the next open message."
1163   (interactive)
1164   (let* ((end-of-this-message (notmuch-show-message-bottom))
1165          (visible-end-of-this-message (1- end-of-this-message))
1166          (ret nil))
1167     (while (invisible-p visible-end-of-this-message)
1168       (setq visible-end-of-this-message
1169             (max (point-min)
1170                  (1- (previous-single-char-property-change
1171                       visible-end-of-this-message 'invisible)))))
1172     (cond
1173      ;; Ideally we would test `end-of-this-message' against the result
1174      ;; of `window-end', but that doesn't account for the fact that
1175      ;; the end of the message might be hidden.
1176      ((and visible-end-of-this-message
1177            (> visible-end-of-this-message (window-end)))
1178       ;; The bottom of this message is not visible - scroll.
1179       (scroll-up nil))
1180
1181      ((not (= end-of-this-message (point-max)))
1182       ;; This is not the last message - move to the next visible one.
1183       (notmuch-show-next-open-message))
1184
1185      (t
1186       ;; This is the last message - change the return value
1187       (setq ret t)))
1188     ret))
1189
1190 (defun notmuch-show-advance-and-archive ()
1191   "Advance through thread and archive.
1192
1193 This command is intended to be one of the simplest ways to
1194 process a thread of email. It works exactly like
1195 notmuch-show-advance, in that it scrolls through messages in a
1196 show buffer, except that when it gets to the end of the buffer it
1197 archives the entire current thread, (remove the \"inbox\" tag
1198 from each message), kills the buffer, and displays the next
1199 thread from the search from which this thread was originally
1200 shown."
1201   (interactive)
1202   (if (notmuch-show-advance)
1203       (notmuch-show-archive-thread)))
1204
1205 (defun notmuch-show-rewind ()
1206   "Backup through the thread, (reverse scrolling compared to \\[notmuch-show-advance-and-archive]).
1207
1208 Specifically, if the beginning of the previous email is fewer
1209 than `window-height' lines from the current point, move to it
1210 just like `notmuch-show-previous-message'.
1211
1212 Otherwise, just scroll down a screenful of the current message.
1213
1214 This command does not modify any message tags, (it does not undo
1215 any effects from previous calls to
1216 `notmuch-show-advance-and-archive'."
1217   (interactive)
1218   (let ((start-of-message (notmuch-show-message-top))
1219         (start-of-window (window-start)))
1220     (cond
1221       ;; Either this message is properly aligned with the start of the
1222       ;; window or the start of this message is not visible on the
1223       ;; screen - scroll.
1224      ((or (= start-of-message start-of-window)
1225           (< start-of-message start-of-window))
1226       (scroll-down)
1227       ;; If a small number of lines from the previous message are
1228       ;; visible, realign so that the top of the current message is at
1229       ;; the top of the screen.
1230       (if (<= (count-screen-lines (window-start) start-of-message)
1231               next-screen-context-lines)
1232           (progn
1233             (goto-char (notmuch-show-message-top))
1234             (notmuch-show-message-adjust)))
1235       ;; Move to the top left of the window.
1236       (goto-char (window-start)))
1237      (t
1238       ;; Move to the previous message.
1239       (notmuch-show-previous-message)))))
1240
1241 (defun notmuch-show-reply (&optional prompt-for-sender)
1242   "Reply to the sender and all recipients of the current message."
1243   (interactive "P")
1244   (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender t))
1245
1246 (defun notmuch-show-reply-sender (&optional prompt-for-sender)
1247   "Reply to the sender of the current message."
1248   (interactive "P")
1249   (notmuch-mua-new-reply (notmuch-show-get-message-id) prompt-for-sender nil))
1250
1251 (defun notmuch-show-forward-message (&optional prompt-for-sender)
1252   "Forward the current message."
1253   (interactive "P")
1254   (with-current-notmuch-show-message
1255    (notmuch-mua-new-forward-message prompt-for-sender)))
1256
1257 (defun notmuch-show-next-message ()
1258   "Show the next message."
1259   (interactive)
1260   (if (notmuch-show-goto-message-next)
1261       (progn
1262         (notmuch-show-mark-read)
1263         (notmuch-show-message-adjust))
1264     (goto-char (point-max))))
1265
1266 (defun notmuch-show-previous-message ()
1267   "Show the previous message."
1268   (interactive)
1269   (notmuch-show-goto-message-previous)
1270   (notmuch-show-mark-read)
1271   (notmuch-show-message-adjust))
1272
1273 (defun notmuch-show-next-open-message ()
1274   "Show the next message."
1275   (interactive)
1276   (let (r)
1277     (while (and (setq r (notmuch-show-goto-message-next))
1278                 (not (notmuch-show-message-visible-p))))
1279     (if r
1280         (progn
1281           (notmuch-show-mark-read)
1282           (notmuch-show-message-adjust))
1283       (goto-char (point-max)))))
1284
1285 (defun notmuch-show-previous-open-message ()
1286   "Show the previous message."
1287   (interactive)
1288   (while (and (notmuch-show-goto-message-previous)
1289               (not (notmuch-show-message-visible-p))))
1290   (notmuch-show-mark-read)
1291   (notmuch-show-message-adjust))
1292
1293 (defun notmuch-show-view-raw-message ()
1294   "View the file holding the current message."
1295   (interactive)
1296   (let* ((id (notmuch-show-get-message-id))
1297          (buf (get-buffer-create (concat "*notmuch-raw-" id "*"))))
1298     (call-process notmuch-command nil buf nil "show" "--format=raw" id)
1299     (switch-to-buffer buf)
1300     (goto-char (point-min))
1301     (set-buffer-modified-p nil)
1302     (view-buffer buf 'kill-buffer-if-not-modified)))
1303
1304 (defun notmuch-show-pipe-message (entire-thread command)
1305   "Pipe the contents of the current message (or thread) to the given command.
1306
1307 The given command will be executed with the raw contents of the
1308 current email message as stdin. Anything printed by the command
1309 to stdout or stderr will appear in the *notmuch-pipe* buffer.
1310
1311 When invoked with a prefix argument, the command will receive all
1312 open messages in the current thread (formatted as an mbox) rather
1313 than only the current message."
1314   (interactive "P\nsPipe message to command: ")
1315   (let (shell-command)
1316     (if entire-thread
1317         (setq shell-command 
1318               (concat notmuch-command " show --format=mbox "
1319                       (shell-quote-argument
1320                        (mapconcat 'identity (notmuch-show-get-message-ids-for-open-messages) " OR "))
1321                       " | " command))
1322       (setq shell-command
1323             (concat notmuch-command " show --format=raw "
1324                     (shell-quote-argument (notmuch-show-get-message-id)) " | " command)))
1325     (let ((buf (get-buffer-create (concat "*notmuch-pipe*"))))
1326       (with-current-buffer buf
1327         (setq buffer-read-only nil)
1328         (erase-buffer)
1329         (let ((exit-code (call-process-shell-command shell-command nil buf)))
1330           (goto-char (point-max))
1331           (set-buffer-modified-p nil)
1332           (setq buffer-read-only t)
1333           (unless (zerop exit-code)
1334             (switch-to-buffer-other-window buf)
1335             (message (format "Command '%s' exited abnormally with code %d"
1336                              shell-command exit-code))))))))
1337
1338 (defun notmuch-show-add-tags-worker (current-tags add-tags)
1339   "Add to `current-tags' with any tags from `add-tags' not
1340 currently present and return the result."
1341   (let ((result-tags (copy-sequence current-tags)))
1342     (mapc (lambda (add-tag)
1343             (unless (member add-tag current-tags)
1344               (setq result-tags (push add-tag result-tags))))
1345             add-tags)
1346     (sort result-tags 'string<)))
1347
1348 (defun notmuch-show-del-tags-worker (current-tags del-tags)
1349   "Remove any tags in `del-tags' from `current-tags' and return
1350 the result."
1351   (let ((result-tags (copy-sequence current-tags)))
1352     (mapc (lambda (del-tag)
1353             (setq result-tags (delete del-tag result-tags)))
1354           del-tags)
1355     result-tags))
1356
1357 (defun notmuch-show-add-tag (&rest toadd)
1358   "Add a tag to the current message."
1359   (interactive
1360    (list (notmuch-select-tag-with-completion "Tag to add: ")))
1361
1362   (let* ((current-tags (notmuch-show-get-tags))
1363          (new-tags (notmuch-show-add-tags-worker current-tags toadd)))
1364
1365     (unless (equal current-tags new-tags)
1366       (apply 'notmuch-tag (notmuch-show-get-message-id)
1367              (mapcar (lambda (s) (concat "+" s)) toadd))
1368       (notmuch-show-set-tags new-tags))))
1369
1370 (defun notmuch-show-remove-tag (&rest toremove)
1371   "Remove a tag from the current message."
1372   (interactive
1373    (list (notmuch-select-tag-with-completion
1374           "Tag to remove: " (notmuch-show-get-message-id))))
1375
1376   (let* ((current-tags (notmuch-show-get-tags))
1377          (new-tags (notmuch-show-del-tags-worker current-tags toremove)))
1378
1379     (unless (equal current-tags new-tags)
1380       (apply 'notmuch-tag (notmuch-show-get-message-id)
1381              (mapcar (lambda (s) (concat "-" s)) toremove))
1382       (notmuch-show-set-tags new-tags))))
1383
1384 (defun notmuch-show-toggle-headers ()
1385   "Toggle the visibility of the current message headers."
1386   (interactive)
1387   (let ((props (notmuch-show-get-message-properties)))
1388     (notmuch-show-headers-visible
1389      props
1390      (not (plist-get props :headers-visible))))
1391   (force-window-update))
1392
1393 (defun notmuch-show-toggle-message ()
1394   "Toggle the visibility of the current message."
1395   (interactive)
1396   (let ((props (notmuch-show-get-message-properties)))
1397     (notmuch-show-message-visible
1398      props
1399      (not (plist-get props :message-visible))))
1400   (force-window-update))
1401
1402 (defun notmuch-show-open-or-close-all ()
1403   "Set the visibility all of the messages in the current thread.
1404 By default make all of the messages visible. With a prefix
1405 argument, hide all of the messages."
1406   (interactive)
1407   (save-excursion
1408     (goto-char (point-min))
1409     (loop do (notmuch-show-message-visible (notmuch-show-get-message-properties)
1410                                            (not current-prefix-arg))
1411           until (not (notmuch-show-goto-message-next))))
1412   (force-window-update))
1413
1414 (defun notmuch-show-next-button ()
1415   "Advance point to the next button in the buffer."
1416   (interactive)
1417   (forward-button 1))
1418
1419 (defun notmuch-show-previous-button ()
1420   "Move point back to the previous button in the buffer."
1421   (interactive)
1422   (backward-button 1))
1423
1424 (defun notmuch-show-archive-thread-internal (show-next)
1425   ;; Remove the tag from the current set of messages.
1426   (goto-char (point-min))
1427   (loop do (notmuch-show-remove-tag "inbox")
1428         until (not (notmuch-show-goto-message-next)))
1429   ;; Move to the next item in the search results, if any.
1430   (let ((parent-buffer notmuch-show-parent-buffer))
1431     (notmuch-kill-this-buffer)
1432     (if parent-buffer
1433         (progn
1434           (switch-to-buffer parent-buffer)
1435           (forward-line)
1436           (if show-next
1437               (notmuch-search-show-thread))))))
1438
1439 (defun notmuch-show-archive-thread ()
1440   "Archive each message in thread, then show next thread from search.
1441
1442 Archive each message currently shown by removing the \"inbox\"
1443 tag from each. Then kill this buffer and show the next thread
1444 from the search from which this thread was originally shown.
1445
1446 Note: This command is safe from any race condition of new messages
1447 being delivered to the same thread. It does not archive the
1448 entire thread, but only the messages shown in the current
1449 buffer."
1450   (interactive)
1451   (notmuch-show-archive-thread-internal t))
1452
1453 (defun notmuch-show-archive-thread-then-exit ()
1454   "Archive each message in thread, then exit back to search results."
1455   (interactive)
1456   (notmuch-show-archive-thread-internal nil))
1457
1458 (defun notmuch-show-stash-cc ()
1459   "Copy CC field of current message to kill-ring."
1460   (interactive)
1461   (notmuch-common-do-stash (notmuch-show-get-cc)))
1462
1463 (defun notmuch-show-stash-date ()
1464   "Copy date of current message to kill-ring."
1465   (interactive)
1466   (notmuch-common-do-stash (notmuch-show-get-date)))
1467
1468 (defun notmuch-show-stash-filename ()
1469   "Copy filename of current message to kill-ring."
1470   (interactive)
1471   (notmuch-common-do-stash (notmuch-show-get-filename)))
1472
1473 (defun notmuch-show-stash-from ()
1474   "Copy From address of current message to kill-ring."
1475   (interactive)
1476   (notmuch-common-do-stash (notmuch-show-get-from)))
1477
1478 (defun notmuch-show-stash-message-id ()
1479   "Copy message ID of current message to kill-ring."
1480   (interactive)
1481   (notmuch-common-do-stash (notmuch-show-get-message-id)))
1482
1483 (defun notmuch-show-stash-message-id-stripped ()
1484   "Copy message ID of current message (sans `id:' prefix) to kill-ring."
1485   (interactive)
1486   (notmuch-common-do-stash (substring (notmuch-show-get-message-id) 4 -1)))
1487
1488 (defun notmuch-show-stash-subject ()
1489   "Copy Subject field of current message to kill-ring."
1490   (interactive)
1491   (notmuch-common-do-stash (notmuch-show-get-subject)))
1492
1493 (defun notmuch-show-stash-tags ()
1494   "Copy tags of current message to kill-ring as a comma separated list."
1495   (interactive)
1496   (notmuch-common-do-stash (mapconcat 'identity (notmuch-show-get-tags) ",")))
1497
1498 (defun notmuch-show-stash-to ()
1499   "Copy To address of current message to kill-ring."
1500   (interactive)
1501   (notmuch-common-do-stash (notmuch-show-get-to)))
1502
1503 ;; Commands typically bound to buttons.
1504
1505 (defun notmuch-show-part-button-action (button)
1506   (let ((nth (button-get button :notmuch-part)))
1507     (if nth
1508         (notmuch-show-save-part (notmuch-show-get-message-id) nth
1509                                 (button-get button :notmuch-filename))
1510       (message "Not a valid part (is it a fake part?)."))))
1511
1512 ;;
1513
1514 (provide 'notmuch-show)