]> git.notmuchmail.org Git - notmuch/blob - notmuch.el
33e434f3ea68dff66a21e81957f066598df97290
[notmuch] / notmuch.el
1 ; notmuch.el --- run notmuch within emacs
2 ;
3 ; Copyright © Carl Worth
4 ;
5 ; This file is part of Notmuch.
6 ;
7 ; Notmuch is free software: you can redistribute it and/or modify it
8 ; under the terms of the GNU General Public License as published by
9 ; the Free Software Foundation, either version 3 of the License, or
10 ; (at your option) any later version.
11 ;
12 ; Notmuch is distributed in the hope that it will be useful, but
13 ; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ; General Public License for more details.
16 ;
17 ; You should have received a copy of the GNU General Public License
18 ; along with Notmuch.  If not, see <http://www.gnu.org/licenses/>.
19 ;
20 ; Authors: Carl Worth <cworth@cworth.org>
21
22 ; This is an emacs-based interface to the notmuch mail system.
23 ;
24 ; You will first need to have the notmuch program installed and have a
25 ; notmuch database built in order to use this. See
26 ; http://notmuchmail.org for details.
27 ;
28 ; To install this software, copy it to a directory that is on the
29 ; `load-path' variable within emacs (a good candidate is
30 ; /usr/local/share/emacs/site-lisp). If you are viewing this from the
31 ; notmuch source distribution then you can simply run:
32 ;
33 ;       sudo make install-emacs
34 ;
35 ; to install it.
36 ;
37 ; Then, to actually run it, add:
38 ;
39 ;       (require 'notmuch)
40 ;
41 ; to your ~/.emacs file, and then run "M-x notmuch" from within emacs,
42 ; or run:
43 ;
44 ;       emacs -f notmuch
45 ;
46 ; Have fun, and let us know if you have any comment, questions, or
47 ; kudos: Notmuch list <notmuch@notmuchmail.org> (subscription is not
48 ; required, but is available from http://notmuchmail.org).
49
50 (require 'cl)
51 (require 'mm-view)
52 (require 'message)
53
54 (defvar notmuch-show-mode-map
55   (let ((map (make-sparse-keymap)))
56     (define-key map "?" 'notmuch-help)
57     (define-key map "q" 'kill-this-buffer)
58     (define-key map (kbd "C-p") 'notmuch-show-previous-line)
59     (define-key map (kbd "C-n") 'notmuch-show-next-line)
60     (define-key map (kbd "M-TAB") 'notmuch-show-previous-button)
61     (define-key map (kbd "TAB") 'notmuch-show-next-button)
62     (define-key map "s" 'notmuch-search)
63     (define-key map "m" 'message-mail)
64     (define-key map "f" 'notmuch-show-forward-current)
65     (define-key map "r" 'notmuch-show-reply)
66     (define-key map "|" 'notmuch-show-pipe-message)
67     (define-key map "w" 'notmuch-show-save-attachments)
68     (define-key map "V" 'notmuch-show-view-raw-message)
69     (define-key map "v" 'notmuch-show-view-all-mime-parts)
70     (define-key map "-" 'notmuch-show-remove-tag)
71     (define-key map "+" 'notmuch-show-add-tag)
72     (define-key map "X" 'notmuch-show-mark-read-then-archive-then-exit)
73     (define-key map "x" 'notmuch-show-archive-thread-then-exit)
74     (define-key map "A" 'notmuch-show-mark-read-then-archive-thread)
75     (define-key map "a" 'notmuch-show-archive-thread)
76     (define-key map "p" 'notmuch-show-previous-message)
77     (define-key map "N" 'notmuch-show-mark-read-then-next-open-message)
78     (define-key map "n" 'notmuch-show-next-message)
79     (define-key map (kbd "DEL") 'notmuch-show-rewind)
80     (define-key map " " 'notmuch-show-advance-marking-read-and-archiving)
81     map)
82   "Keymap for \"notmuch show\" buffers.")
83 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
84
85 (defvar notmuch-show-signature-regexp "\\(-- ?\\|_+\\)$"
86   "Pattern to match a line that separates content from signature.
87
88 The regexp can (and should) include $ to match the end of the
89 line, but should not include ^ to match the beginning of the
90 line. This is because notmuch may have inserted additional space
91 for indentation at the beginning of the line. But notmuch will
92 move past the indentation when testing this pattern, (so that the
93 pattern can still test against the entire line).")
94
95 (defvar notmuch-show-signature-lines-max 12
96   "Maximum length of signature that will be hidden by default.")
97
98 (defvar notmuch-command "notmuch"
99   "Command to run the notmuch binary.")
100
101 (defvar notmuch-show-message-begin-regexp    "\fmessage{")
102 (defvar notmuch-show-message-end-regexp      "\fmessage}")
103 (defvar notmuch-show-header-begin-regexp     "\fheader{")
104 (defvar notmuch-show-header-end-regexp       "\fheader}")
105 (defvar notmuch-show-body-begin-regexp       "\fbody{")
106 (defvar notmuch-show-body-end-regexp         "\fbody}")
107 (defvar notmuch-show-attachment-begin-regexp "\fattachment{")
108 (defvar notmuch-show-attachment-end-regexp   "\fattachment}")
109 (defvar notmuch-show-part-begin-regexp       "\fpart{")
110 (defvar notmuch-show-part-end-regexp         "\fpart}")
111 (defvar notmuch-show-marker-regexp "\f\\(message\\|header\\|body\\|attachment\\|part\\)[{}].*$")
112
113 (defvar notmuch-show-id-regexp "\\(id:[^ ]*\\)")
114 (defvar notmuch-show-depth-match-regexp " depth:\\([0-9]*\\).*match:\\([01]\\) ")
115 (defvar notmuch-show-filename-regexp "filename:\\(.*\\)$")
116 (defvar notmuch-show-tags-regexp "(\\([^)]*\\))$")
117
118 (defvar notmuch-show-parent-buffer nil)
119 (defvar notmuch-show-body-read-visible nil)
120 (defvar notmuch-show-citations-visible nil)
121 (defvar notmuch-show-signatures-visible nil)
122 (defvar notmuch-show-headers-visible nil)
123
124 ; XXX: This should be a generic function in emacs somewhere, not here
125 (defun point-invisible-p ()
126   "Return whether the character at point is invisible.
127
128 Here visibility is determined by `buffer-invisibility-spec' and
129 the invisible property of any overlays for point. It doesn't have
130 anything to do with whether point is currently being displayed
131 within the current window."
132   (let ((prop (get-char-property (point) 'invisible)))
133     (if (eq buffer-invisibility-spec t)
134         prop
135       (or (memq prop buffer-invisibility-spec)
136           (assq prop buffer-invisibility-spec)))))
137
138 (defun notmuch-select-tag-with-completion (prompt &rest search-terms)
139   (let ((tag-list
140          (with-output-to-string
141            (with-current-buffer standard-output
142              (apply 'call-process notmuch-command nil t nil "search-tags" search-terms)))))
143     (completing-read prompt (split-string tag-list "\n+" t) nil nil nil)))
144
145 (defun notmuch-show-next-line ()
146   "Like builtin `next-line' but ensuring we end on a visible character.
147
148 By advancing forward until reaching a visible character.
149
150 Unlike builtin `next-line' this version accepts no arguments."
151   (interactive)
152   (set 'this-command 'next-line)
153   (call-interactively 'next-line)
154   (while (point-invisible-p)
155     (forward-char)))
156
157 (defun notmuch-show-previous-line ()
158   "Like builtin `previous-line' but ensuring we end on a visible character.
159
160 By advancing forward until reaching a visible character.
161
162 Unlike builtin `previous-line' this version accepts no arguments."
163   (interactive)
164   (set 'this-command 'previous-line)
165   (call-interactively 'previous-line)
166   (while (point-invisible-p)
167     (forward-char)))
168
169 (defun notmuch-show-get-message-id ()
170   (save-excursion
171     (beginning-of-line)
172     (if (not (looking-at notmuch-show-message-begin-regexp))
173         (re-search-backward notmuch-show-message-begin-regexp))
174     (re-search-forward notmuch-show-id-regexp)
175     (buffer-substring-no-properties (match-beginning 1) (match-end 1))))
176
177 (defun notmuch-show-get-filename ()
178   (save-excursion
179     (beginning-of-line)
180     (if (not (looking-at notmuch-show-message-begin-regexp))
181         (re-search-backward notmuch-show-message-begin-regexp))
182     (re-search-forward notmuch-show-filename-regexp)
183     (buffer-substring-no-properties (match-beginning 1) (match-end 1))))
184
185 (defun notmuch-show-set-tags (tags)
186   (save-excursion
187     (beginning-of-line)
188     (if (not (looking-at notmuch-show-message-begin-regexp))
189         (re-search-backward notmuch-show-message-begin-regexp))
190     (re-search-forward notmuch-show-tags-regexp)
191     (let ((inhibit-read-only t)
192           (beg (match-beginning 1))
193           (end (match-end 1)))
194       (delete-region beg end)
195       (goto-char beg)
196       (insert (mapconcat 'identity tags " ")))))
197
198 (defun notmuch-show-get-tags ()
199   (save-excursion
200     (beginning-of-line)
201     (if (not (looking-at notmuch-show-message-begin-regexp))
202         (re-search-backward notmuch-show-message-begin-regexp))
203     (re-search-forward notmuch-show-tags-regexp)
204     (split-string (buffer-substring (match-beginning 1) (match-end 1)))))
205
206 (defun notmuch-show-add-tag (&rest toadd)
207   "Add a tag to the current message."
208   (interactive
209    (list (notmuch-select-tag-with-completion "Tag to add: ")))
210   (apply 'notmuch-call-notmuch-process
211          (append (cons "tag"
212                        (mapcar (lambda (s) (concat "+" s)) toadd))
213                  (cons (notmuch-show-get-message-id) nil)))
214   (notmuch-show-set-tags (sort (union toadd (notmuch-show-get-tags) :test 'string=) 'string<)))
215
216 (defun notmuch-show-remove-tag (&rest toremove)
217   "Remove a tag from the current message."
218   (interactive
219    (list (notmuch-select-tag-with-completion "Tag to remove: " (notmuch-show-get-message-id))))
220   (let ((tags (notmuch-show-get-tags)))
221     (if (intersection tags toremove :test 'string=)
222         (progn
223           (apply 'notmuch-call-notmuch-process
224                  (append (cons "tag"
225                                (mapcar (lambda (s) (concat "-" s)) toremove))
226                          (cons (notmuch-show-get-message-id) nil)))
227           (notmuch-show-set-tags (sort (set-difference tags toremove :test 'string=) 'string<))))))
228
229 (defun notmuch-show-archive-thread-maybe-mark-read (markread)
230   (save-excursion
231     (goto-char (point-min))
232     (while (not (eobp))
233       (if markread
234           (notmuch-show-remove-tag "unread" "inbox")
235         (notmuch-show-remove-tag "inbox"))
236       (if (not (eobp))
237           (forward-char))
238       (if (not (re-search-forward notmuch-show-message-begin-regexp nil t))
239           (goto-char (point-max)))))
240   (let ((parent-buffer notmuch-show-parent-buffer))
241     (kill-this-buffer)
242     (if parent-buffer
243         (progn
244           (switch-to-buffer parent-buffer)
245           (forward-line)
246           (notmuch-search-show-thread)))))
247
248 (defun notmuch-show-mark-read-then-archive-thread ()
249   "Remove unread tags from thread, then archive and show next thread.
250
251 Archive each message currently shown by removing the \"unread\"
252 and \"inbox\" tag from each. Then kill this buffer and show the
253 next thread from the search from which this thread was originally
254 shown.
255
256 Note: This command is safe from any race condition of new messages
257 being delivered to the same thread. It does not archive the
258 entire thread, but only the messages shown in the current
259 buffer."
260   (interactive)
261   (notmuch-show-archive-thread-maybe-mark-read t))
262
263 (defun notmuch-show-archive-thread ()
264   "Archive each message in thread, then show next thread from search.
265
266 Archive each message currently shown by removing the \"inbox\"
267 tag from each. Then kill this buffer and show the next thread
268 from the search from which this thread was originally shown.
269
270 Note: This command is safe from any race condition of new messages
271 being delivered to the same thread. It does not archive the
272 entire thread, but only the messages shown in the current
273 buffer."
274   (interactive)
275   (notmuch-show-archive-thread-maybe-mark-read nil))
276
277 (defun notmuch-show-archive-thread-then-exit ()
278   "Archive each message in thread, then exit back to search results."
279   (interactive)
280   (notmuch-show-archive-thread)
281   (kill-this-buffer))
282
283 (defun notmuch-show-mark-read-then-archive-then-exit ()
284   "Remove unread tags from thread, then archive and exit to search results."
285   (interactive)
286   (notmuch-show-mark-read-then-archive-thread)
287   (kill-this-buffer))
288
289 (defun notmuch-show-view-raw-message ()
290   "View the raw email of the current message."
291   (interactive)
292   (view-file (notmuch-show-get-filename)))
293
294 (defmacro with-current-notmuch-show-message (&rest body)
295   "Evaluate body with current buffer set to the text of current message"
296   `(save-excursion
297      (let ((filename (notmuch-show-get-filename)))
298        (let ((buf (generate-new-buffer (concat "*notmuch-msg-" filename "*"))))
299          (with-current-buffer buf
300            (insert-file-contents filename nil nil nil t)
301            ,@body)
302         (kill-buffer buf)))))
303
304 (defun notmuch-show-view-all-mime-parts ()
305   "Use external viewers to view all attachments from the current message."
306   (interactive)
307   (with-current-notmuch-show-message
308    (mm-display-parts (mm-dissect-buffer))))
309
310 (defun notmuch-foreach-mime-part (function mm-handle)
311   (cond ((stringp (car mm-handle))
312          (dolist (part (cdr mm-handle))
313            (notmuch-foreach-mime-part function part)))
314         ((bufferp (car mm-handle))
315          (funcall function mm-handle))
316         (t (dolist (part mm-handle)
317              (notmuch-foreach-mime-part function part)))))
318
319 (defun notmuch-count-attachments (mm-handle)
320   (let ((count 0))
321     (notmuch-foreach-mime-part
322      (lambda (p)
323        (let ((disposition (mm-handle-disposition p)))
324          (and (listp disposition)
325               (or (equal (car disposition) "attachment")
326                   (and (equal (car disposition) "inline")
327                        (assq 'filename disposition)))
328               (incf count))))
329      mm-handle)
330     count))
331
332 (defun notmuch-save-attachments (mm-handle &optional queryp)
333   (notmuch-foreach-mime-part
334    (lambda (p)
335      (let ((disposition (mm-handle-disposition p)))
336        (and (listp disposition)
337             (or (equal (car disposition) "attachment")
338                 (and (equal (car disposition) "inline")
339                      (assq 'filename disposition)))
340             (or (not queryp)
341                 (y-or-n-p
342                  (concat "Save '" (cdr (assq 'filename disposition)) "' ")))
343             (mm-save-part p))))
344    mm-handle))
345
346 (defun notmuch-show-save-attachments ()
347   "Save all attachments from the current message."
348   (interactive)
349   (with-current-notmuch-show-message
350    (let ((mm-handle (mm-dissect-buffer)))
351      (notmuch-save-attachments
352       mm-handle (> (notmuch-count-attachments mm-handle) 1))))
353   (message "Done"))
354
355 (defun notmuch-reply (query-string)
356   (switch-to-buffer (generate-new-buffer "notmuch-draft"))
357   (call-process notmuch-command nil t nil "reply" query-string)
358   (message-insert-signature)
359   (goto-char (point-min))
360   (if (re-search-forward "^$" nil t)
361       (progn
362         (insert "--text follows this line--")
363         (forward-line)))
364   (message-mode))
365
366 (defun notmuch-show-reply ()
367   "Begin composing a reply to the current message in a new buffer."
368   (interactive)
369   (let ((message-id (notmuch-show-get-message-id)))
370     (notmuch-reply message-id)))
371
372 (defun notmuch-show-forward-current ()
373   "Forward the current message."
374   (interactive)
375   (with-current-notmuch-show-message
376    (message-forward)))
377
378 (defun notmuch-show-pipe-message (command)
379   "Pipe the contents of the current message to the given command.
380
381 The given command will be executed with the raw contents of the
382 current email message as stdin. Anything printed by the command
383 to stdout or stderr will appear in the *Messages* buffer."
384   (interactive "sPipe message to command: ")
385   (apply 'start-process-shell-command "notmuch-pipe-command" "*notmuch-pipe*"
386          (list command " < " (shell-quote-argument (notmuch-show-get-filename)))))
387
388 (defun notmuch-show-move-to-current-message-summary-line ()
389   "Move to the beginning of the one-line summary of the current message.
390
391 This gives us a stable place to move to and work from since the
392 summary line is always visible. This is important since moving to
393 an invisible location is unreliable, (the main command loop moves
394 point either forward or backward to the next visible character
395 when a command ends with point on an invisible character).
396
397 Emits an error if point is not within a valid message, (that is
398 no pattern of `notmuch-show-message-begin-regexp' could be found
399 by searching backward)."
400   (beginning-of-line)
401   (if (not (looking-at notmuch-show-message-begin-regexp))
402       (if (re-search-backward notmuch-show-message-begin-regexp nil t)
403           (forward-line 2)
404         (error "Not within a valid message."))
405     (forward-line 2)))
406
407 (defun notmuch-show-last-message-p ()
408   "Predicate testing whether point is within the last message."
409   (save-window-excursion
410     (save-excursion
411       (notmuch-show-move-to-current-message-summary-line)
412       (not (re-search-forward notmuch-show-message-begin-regexp nil t)))))
413
414 (defun notmuch-show-message-unread-p ()
415   "Predicate testing whether current message is unread."
416   (member "unread" (notmuch-show-get-tags)))
417
418 (defun notmuch-show-message-open-p ()
419   "Predicate testing whether current message is open (body is visible)."
420   (let ((btn (previous-button (point) t)))
421     (while (not (button-has-type-p btn 'notmuch-button-body-toggle-type))
422       (setq btn (previous-button (button-start btn))))
423     (not (invisible-p (button-get btn 'invisibility-spec)))))
424
425 (defun notmuch-show-next-message ()
426   "Advance to the beginning of the next message in the buffer.
427
428 Moves to the last visible character of the current message if
429 already on the last message in the buffer.
430
431 Returns nil if already on the last message in the buffer."
432   (interactive)
433   (notmuch-show-move-to-current-message-summary-line)
434   (if (re-search-forward notmuch-show-message-begin-regexp nil t)
435       (progn
436         (notmuch-show-move-to-current-message-summary-line)
437         (recenter 0)
438         t)
439     (goto-char (- (point-max) 1))
440     (while (point-invisible-p)
441       (backward-char))
442     (recenter 0)
443     nil))
444
445 (defun notmuch-show-find-next-message ()
446   "Returns the position of the next message in the buffer.
447
448 Or the position of the last visible character of the current
449 message if already within the last message in the buffer."
450   ; save-excursion doesn't save our window position
451   ; save-window-excursion doesn't save point
452   ; Looks like we have to use both.
453   (save-excursion
454     (save-window-excursion
455       (notmuch-show-next-message)
456       (point))))
457
458 (defun notmuch-show-next-unread-message ()
459   "Advance to the beginning of the next unread message in the buffer.
460
461 Moves to the last visible character of the current message if
462 there are no more unread messages past the current point."
463   (notmuch-show-next-message)
464   (while (and (not (notmuch-show-last-message-p))
465               (not (notmuch-show-message-unread-p)))
466     (notmuch-show-next-message))
467   (if (not (notmuch-show-message-unread-p))
468       (notmuch-show-next-message)))
469
470 (defun notmuch-show-next-open-message ()
471   "Advance to the next open message (that is, body is not invisible)."
472   (while (and (notmuch-show-next-message)
473               (not (notmuch-show-message-open-p)))))
474
475 (defun notmuch-show-previous-message ()
476   "Backup to the beginning of the previous message in the buffer.
477
478 If within a message rather than at the beginning of it, then
479 simply move to the beginning of the current message."
480   (interactive)
481   (let ((start (point)))
482     (notmuch-show-move-to-current-message-summary-line)
483     (if (not (< (point) start))
484         ; Go backward twice to skip the current message's marker
485         (progn
486           (re-search-backward notmuch-show-message-begin-regexp nil t)
487           (re-search-backward notmuch-show-message-begin-regexp nil t)
488           (notmuch-show-move-to-current-message-summary-line)
489           ))
490     (recenter 0)))
491
492 (defun notmuch-show-find-previous-message ()
493   "Returns the position of the previous message in the buffer.
494
495 Or the position of the beginning of the current message if point
496 is originally within the message rather than at the beginning of
497 it."
498   ; save-excursion doesn't save our window position
499   ; save-window-excursion doesn't save point
500   ; Looks like we have to use both.
501   (save-excursion
502     (save-window-excursion
503       (notmuch-show-previous-message)
504       (point))))
505
506 (defun notmuch-show-mark-read-then-next-open-message ()
507   "Remove unread tag from this message, then advance to next open message."
508   (interactive)
509   (notmuch-show-remove-tag "unread")
510   (notmuch-show-next-open-message))
511
512 (defun notmuch-show-rewind ()
513   "Backup through the thread, (reverse scrolling compared to \\[notmuch-show-advance-marking-read-and-archiving]).
514
515 Specifically, if the beginning of the previous email is fewer
516 than `window-height' lines from the current point, move to it
517 just like `notmuch-show-previous-message'.
518
519 Otherwise, just scroll down a screenful of the current message.
520
521 This command does not modify any message tags, (it does not undo
522 any effects from previous calls to
523 `notmuch-show-advance-marking-read-and-archiving'."
524   (interactive)
525   (let ((previous (notmuch-show-find-previous-message)))
526     (if (> (count-lines previous (point)) (- (window-height) next-screen-context-lines))
527         (progn
528           (condition-case nil
529               (scroll-down nil)
530             ((beginning-of-buffer) nil))
531           (goto-char (window-start)))
532       (notmuch-show-previous-message))))
533
534 (defun notmuch-show-advance-marking-read-and-archiving ()
535   "Advance through thread, marking read and archiving.
536
537 This command is intended to be one of the simplest ways to
538 process a thread of email. It does the following:
539
540 If the current message in the thread is not yet fully visible,
541 scroll by a near screenful to read more of the message.
542
543 Otherwise, (the end of the current message is already within the
544 current window), remove the \"unread\" tag (if present) from the
545 current message and advance to the next open message.
546
547 Finally, if there is no further message to advance to, and this
548 last message is already read, then archive the entire current
549 thread, (remove the \"inbox\" tag from each message). Also kill
550 this buffer, and display the next thread from the search from
551 which this thread was originally shown."
552   (interactive)
553   (let ((next (notmuch-show-find-next-message))
554         (unread (notmuch-show-message-unread-p)))
555     (if (> next (window-end))
556         (scroll-up nil)
557       (let ((last (notmuch-show-last-message-p)))
558         (notmuch-show-mark-read-then-next-open-message)
559         (if last
560             (notmuch-show-archive-thread))))))
561
562 (defun notmuch-show-next-button ()
563   "Advance point to the next button in the buffer."
564   (interactive)
565   (goto-char (button-start (next-button (point)))))
566
567 (defun notmuch-show-previous-button ()
568   "Move point back to the previous button in the buffer."
569   (interactive)
570   (goto-char (button-start (previous-button (point)))))
571
572 (defun notmuch-toggle-invisible-action (cite-button)
573   (let ((invis-spec (button-get cite-button 'invisibility-spec)))
574         (if (invisible-p invis-spec)
575             (remove-from-invisibility-spec invis-spec)
576           (add-to-invisibility-spec invis-spec)
577           ))
578   (force-window-update)
579   (redisplay t))
580
581 (define-button-type 'notmuch-button-invisibility-toggle-type
582   'action 'notmuch-toggle-invisible-action
583   'follow-link t
584   'face "default")
585 (define-button-type 'notmuch-button-citation-toggle-type 'help-echo "mouse-1, RET: Show citation"
586   :supertype 'notmuch-button-invisibility-toggle-type)
587 (define-button-type 'notmuch-button-signature-toggle-type 'help-echo "mouse-1, RET: Show signature"
588   :supertype 'notmuch-button-invisibility-toggle-type)
589 (define-button-type 'notmuch-button-headers-toggle-type 'help-echo "mouse-1, RET: Show headers"
590   :supertype 'notmuch-button-invisibility-toggle-type)
591 (define-button-type 'notmuch-button-body-toggle-type
592   'help-echo "mouse-1, RET: Show message"
593   'face 'notmuch-message-summary-face
594   :supertype 'notmuch-button-invisibility-toggle-type)
595
596 (defun notmuch-show-markup-citations-region (beg end depth)
597   (goto-char beg)
598   (beginning-of-line)
599   (while (< (point) end)
600     (let ((beg-sub (point-marker))
601           (indent (make-string depth ? ))
602           (citation ">"))
603       (move-to-column depth)
604       (if (looking-at citation)
605           (progn
606             (while (looking-at citation)
607               (forward-line)
608               (move-to-column depth))
609             (let ((overlay (make-overlay beg-sub (point)))
610                   (invis-spec (make-symbol "notmuch-citation-region")))
611               (add-to-invisibility-spec invis-spec)
612               (overlay-put overlay 'invisible invis-spec)
613               (let ((p (point-marker))
614                     (cite-button-text
615                      (concat "["  (number-to-string (count-lines beg-sub (point)))
616                              "-line citation.]")))
617                 (goto-char (- beg-sub 1))
618                 (insert (concat "\n" indent))
619                 (insert-button cite-button-text
620                                'invisibility-spec invis-spec
621                                :type 'notmuch-button-citation-toggle-type)
622                 (insert "\n")
623                 (goto-char (+ (length cite-button-text) p))
624               ))))
625       (move-to-column depth)
626       (if (looking-at notmuch-show-signature-regexp)
627           (let ((sig-lines (- (count-lines beg-sub end) 1)))
628             (if (<= sig-lines notmuch-show-signature-lines-max)
629                 (progn
630                   (let ((invis-spec (make-symbol "notmuch-signature-region")))
631                     (add-to-invisibility-spec invis-spec)
632                     (overlay-put (make-overlay beg-sub end)
633                                  'invisible invis-spec)
634                   
635                     (goto-char (- beg-sub 1))
636                     (insert (concat "\n" indent))
637                     (let ((sig-button-text (concat "[" (number-to-string sig-lines)
638                                                    "-line signature. Click/Enter to show.]")))
639                       (insert-button sig-button-text 'invisibility-spec invis-spec
640                                      :type 'notmuch-button-signature-toggle-type)
641                      )
642                     (insert "\n")
643                     (goto-char end))))))
644       (forward-line))))
645
646 (defun notmuch-show-markup-part (beg end depth)
647   (if (re-search-forward notmuch-show-part-begin-regexp nil t)
648       (progn
649         (forward-line)
650         (let ((beg (point-marker)))
651           (re-search-forward notmuch-show-part-end-regexp)
652           (let ((end (copy-marker (match-beginning 0))))
653             (goto-char end)
654             (if (not (bolp))
655                 (insert "\n"))
656             (indent-rigidly beg end depth)
657             (notmuch-show-markup-citations-region beg end depth)
658             ; Advance to the next part (if any) (so the outer loop can
659             ; determine whether we've left the current message.
660             (if (re-search-forward notmuch-show-part-begin-regexp nil t)
661                 (beginning-of-line)))))
662     (goto-char end)))
663
664 (defun notmuch-show-markup-parts-region (beg end depth)
665   (save-excursion
666     (goto-char beg)
667     (while (< (point) end)
668       (notmuch-show-markup-part beg end depth))))
669
670 (defun notmuch-show-markup-body (depth match btn)
671   "Markup a message body, (indenting, buttonizing citations,
672 etc.), and conditionally hiding the body itself if the message
673 has been read and does not match the current search.
674
675 DEPTH specifies the depth at which this message appears in the
676 tree of the current thread, (the top-level messages have depth 0
677 and each reply increases depth by 1). MATCH indicates whether
678 this message is regarded as matching the current search. BTN is
679 the button which is used to toggle the visibility of this
680 message.
681
682 When this function is called, point must be within the message, but
683 before the delimiter marking the beginning of the body."
684   (re-search-forward notmuch-show-body-begin-regexp)
685   (forward-line)
686   (let ((beg (point-marker)))
687     (re-search-forward notmuch-show-body-end-regexp)
688     (let ((end (copy-marker (match-beginning 0))))
689       (notmuch-show-markup-parts-region beg end depth)
690       (let ((invis-spec (make-symbol "notmuch-show-body-read")))
691         (overlay-put (make-overlay beg end)
692                      'invisible invis-spec)
693         (button-put btn 'invisibility-spec invis-spec)
694         (if (not (or (notmuch-show-message-unread-p) match))
695             (add-to-invisibility-spec invis-spec)))
696       (set-marker beg nil)
697       (set-marker end nil)
698       )))
699
700 (defun notmuch-fontify-headers ()
701   (while (looking-at "[[:space:]]")
702     (forward-char))
703   (if (looking-at "[Tt]o:")
704       (progn
705         (overlay-put (make-overlay (point) (re-search-forward ":"))
706                      'face 'message-header-name)
707         (overlay-put (make-overlay (point) (re-search-forward ".*$"))
708                      'face 'message-header-to))
709     (if (looking-at "[B]?[Cc][Cc]:")
710         (progn
711           (overlay-put (make-overlay (point) (re-search-forward ":"))
712                        'face 'message-header-name)
713           (overlay-put (make-overlay (point) (re-search-forward ".*$"))
714                        'face 'message-header-cc))
715       (if (looking-at "[Ss]ubject:")
716           (progn
717             (overlay-put (make-overlay (point) (re-search-forward ":"))
718                          'face 'message-header-name)
719             (overlay-put (make-overlay (point) (re-search-forward ".*$"))
720                          'face 'message-header-subject))
721         (if (looking-at "[Ff]rom:")
722             (progn
723               (overlay-put (make-overlay (point) (re-search-forward ":"))
724                            'face 'message-header-name)
725               (overlay-put (make-overlay (point) (re-search-forward ".*$"))
726                            'face 'message-header-other)))))))
727
728 (defun notmuch-show-markup-header (message-begin depth)
729   "Buttonize and decorate faces in a message header.
730
731 MESSAGE-BEGIN is the position of the absolute first character in
732 the message (including all delimiters that will end up being
733 invisible etc.). This is to allow a button to reliably extend to
734 the beginning of the message even if point is positioned at an
735 invisible character (such as the beginning of the buffer).
736
737 DEPTH specifies the depth at which this message appears in the
738 tree of the current thread, (the top-level messages have depth 0
739 and each reply increases depth by 1)."
740   (re-search-forward notmuch-show-header-begin-regexp)
741   (forward-line)
742   (let ((beg (point-marker))
743         (summary-end (copy-marker (line-beginning-position 2)))
744         (subject-end (copy-marker (line-end-position 2)))
745         (invis-spec (make-symbol "notmuch-show-header"))
746         (btn nil))
747     (re-search-forward notmuch-show-header-end-regexp)
748     (beginning-of-line)
749     (let ((end (point-marker)))
750       (indent-rigidly beg end depth)
751       (goto-char beg)
752       (setq btn (make-button message-begin summary-end :type 'notmuch-button-body-toggle-type))
753       (forward-line)
754       (add-to-invisibility-spec invis-spec)
755       (overlay-put (make-overlay subject-end end)
756                    'invisible invis-spec)
757       (make-button (line-beginning-position) subject-end
758                    'invisibility-spec invis-spec
759                    :type 'notmuch-button-headers-toggle-type)
760       (while (looking-at "[[:space:]]*[A-Za-z][-A-Za-z0-9]*:")
761         (beginning-of-line)
762         (notmuch-fontify-headers)
763         (forward-line)
764         )
765       (goto-char end)
766       (insert "\n")
767       (set-marker beg nil)
768       (set-marker summary-end nil)
769       (set-marker subject-end nil)
770       (set-marker end nil)
771       )
772   btn))
773
774 (defun notmuch-show-markup-message ()
775   (if (re-search-forward notmuch-show-message-begin-regexp nil t)
776       (let ((message-begin (match-beginning 0)))
777         (re-search-forward notmuch-show-depth-match-regexp)
778         (let ((depth (string-to-number (buffer-substring (match-beginning 1) (match-end 1))))
779               (match (string= "1" (buffer-substring (match-beginning 2) (match-end 2))))
780               (btn nil))
781           (setq btn (notmuch-show-markup-header message-begin depth))
782           (notmuch-show-markup-body depth match btn)))
783     (goto-char (point-max))))
784
785 (defun notmuch-show-hide-markers ()
786   (save-excursion
787     (goto-char (point-min))
788     (while (not (eobp))
789       (if (re-search-forward notmuch-show-marker-regexp nil t)
790           (progn
791             (overlay-put (make-overlay (match-beginning 0) (+ (match-end 0) 1))
792                          'invisible 'notmuch-show-marker))
793         (goto-char (point-max))))))
794
795 (defun notmuch-show-markup-messages ()
796   (save-excursion
797     (goto-char (point-min))
798     (while (not (eobp))
799       (notmuch-show-markup-message)))
800   (notmuch-show-hide-markers))
801
802 (defun notmuch-documentation-first-line (symbol)
803   "Return the first line of the documentation string for SYMBOL."
804   (let ((doc (documentation symbol)))
805     (if doc
806         (with-temp-buffer
807           (insert (documentation symbol t))
808           (goto-char (point-min))
809           (let ((beg (point)))
810             (end-of-line)
811             (buffer-substring beg (point))))
812       "")))
813
814 (defun notmuch-prefix-key-description (key)
815   "Given a prefix key code, return a human-readable string representation.
816
817 This is basically just `format-kbd-macro' but we also convert ESC to M-."
818   (let ((desc (format-kbd-macro (vector key))))
819     (if (string= desc "ESC")
820         "M-"
821       (concat desc " "))))
822
823 ; I would think that emacs would have code handy for walking a keymap
824 ; and generating strings for each key, and I would prefer to just call
825 ; that. But I couldn't find any (could be all implemented in C I
826 ; suppose), so I wrote my own here.
827 (defun notmuch-substitute-one-command-key-with-prefix (prefix binding)
828   "For a key binding, return a string showing a human-readable
829 representation of the prefixed key as well as the first line of
830 documentation from the bound function.
831
832 For a mouse binding, return nil."
833   (let ((key (car binding))
834         (action (cdr binding)))
835     (if (mouse-event-p key)
836         nil
837       (if (keymapp action)
838           (let ((substitute (apply-partially 'notmuch-substitute-one-command-key-with-prefix (notmuch-prefix-key-description key))))
839             (mapconcat substitute (cdr action) "\n"))
840         (concat prefix (format-kbd-macro (vector key))
841                 "\t"
842                 (notmuch-documentation-first-line action))))))
843
844 (defalias 'notmuch-substitute-one-command-key
845   (apply-partially 'notmuch-substitute-one-command-key-with-prefix nil))
846
847 (defun notmuch-substitute-command-keys (doc)
848   "Like `substitute-command-keys' but with documentation, not function names."
849   (let ((beg 0))
850     (while (string-match "\\\\{\\([^}[:space:]]*\\)}" doc beg)
851       (let ((map (substring doc (match-beginning 1) (match-end 1))))
852         (setq doc (replace-match (mapconcat 'notmuch-substitute-one-command-key
853                                             (cdr (symbol-value (intern map))) "\n") 1 1 doc)))
854       (setq beg (match-end 0)))
855     doc))
856
857 (defun notmuch-help ()
858   "Display help for the current notmuch mode."
859   (interactive)
860   (let* ((mode major-mode)
861          (doc (substitute-command-keys (notmuch-substitute-command-keys (documentation mode t)))))
862     (with-current-buffer (generate-new-buffer "*notmuch-help*")
863       (insert doc)
864       (goto-char (point-min))
865       (set-buffer-modified-p nil)
866       (view-buffer (current-buffer) 'kill-buffer-if-not-modified))))
867
868 ;;;###autoload
869 (defun notmuch-show-mode ()
870   "Major mode for viewing a thread with notmuch.
871
872 This buffer contains the results of the \"notmuch show\" command
873 for displaying a single thread of email from your email archives.
874
875 By default, various components of email messages, (citations,
876 signatures, already-read messages), are hidden. You can make
877 these parts visible by clicking with the mouse button or by
878 pressing RET after positioning the cursor on a hidden part, (for
879 which \\[notmuch-show-next-button] and \\[notmuch-show-previous-button] are helpful).
880
881 Reading the thread sequentially is well-supported by pressing
882 \\[notmuch-show-advance-marking-read-and-archiving]. This will scroll the current message (if necessary),
883 advance to the next message, or advance to the next thread (if
884 already on the last message of a thread). As each message is
885 scrolled away its \"unread\" tag will be removed, and as each
886 thread is scrolled away the \"inbox\" tag will be removed from
887 each message in the thread.
888
889 Other commands are available to read or manipulate the thread more
890 selectively, (such as '\\[notmuch-show-next-message]' and '\\[notmuch-show-previous-message]' to advance to messages without
891 removing any tags, and '\\[notmuch-show-archive-thread]' to archive an entire thread without
892 scrolling through with \\[notmuch-show-advance-marking-read-and-archiving]).
893
894 You can add or remove arbitary tags from the current message with
895 '\\[notmuch-show-add-tag]' or '\\[notmuch-show-remove-tag]'.
896
897 All currently available key bindings:
898
899 \\{notmuch-show-mode-map}"
900   (interactive)
901   (kill-all-local-variables)
902   (add-to-invisibility-spec 'notmuch-show-marker)
903   (use-local-map notmuch-show-mode-map)
904   (setq major-mode 'notmuch-show-mode
905         mode-name "notmuch-show")
906   (setq buffer-read-only t))
907
908 (defgroup notmuch nil
909   "Notmuch mail reader for Emacs."
910   :group 'mail)
911
912 (defcustom notmuch-show-hook nil
913   "List of functions to call when notmuch displays a message."
914   :type 'hook
915   :options '(goto-address)
916   :group 'notmuch)
917
918 (defcustom notmuch-search-hook nil
919   "List of functions to call when notmuch displays the search results."
920   :type 'hook
921   :options '(hl-line-mode)
922   :group 'notmuch)
923
924 ; Make show mode a bit prettier, highlighting URLs and using word wrap
925
926 (defun notmuch-show-pretty-hook ()
927   (goto-address-mode 1)
928   (visual-line-mode))
929
930 (add-hook 'notmuch-show-hook 'notmuch-show-pretty-hook)
931 (add-hook 'notmuch-search-hook
932           (lambda()
933             (hl-line-mode 1) ))
934
935 (defun notmuch-show (thread-id &optional parent-buffer query-context)
936   "Run \"notmuch show\" with the given thread ID and display results.
937
938 The optional PARENT-BUFFER is the notmuch-search buffer from
939 which this notmuch-show command was executed, (so that the next
940 thread from that buffer can be show when done with this one).
941
942 The optional QUERY-CONTEXT is a notmuch search term. Only messages from the thread 
943 matching this search term are shown if non-nil. "
944   (interactive "sNotmuch show: ")
945   (let ((buffer (get-buffer-create (concat "*notmuch-show-" thread-id "*"))))
946     (switch-to-buffer buffer)
947     (notmuch-show-mode)
948     (set (make-local-variable 'notmuch-show-parent-buffer) parent-buffer)
949     (let ((proc (get-buffer-process (current-buffer)))
950           (inhibit-read-only t))
951       (if proc
952           (error "notmuch search process already running for query `%s'" thread-id)
953         )
954       (erase-buffer)
955       (goto-char (point-min))
956       (save-excursion
957         (let* ((basic-args (list notmuch-command nil t nil "show" "--entire-thread" thread-id))
958                 (args (if query-context (append basic-args (list "and (" query-context ")")) basic-args)))
959           (apply 'call-process args)
960           (when (and (eq (buffer-size) 0) query-context)
961             (apply 'call-process basic-args)))
962         (notmuch-show-markup-messages)
963         )
964       (run-hooks 'notmuch-show-hook)
965       ; Move straight to the first open message
966       (if (not (notmuch-show-message-open-p))
967           (notmuch-show-next-open-message))
968       )))
969
970 (defvar notmuch-search-authors-width 40
971   "Number of columns to use to display authors in a notmuch-search buffer.")
972
973 (defvar notmuch-search-mode-map
974   (let ((map (make-sparse-keymap)))
975     (define-key map "?" 'notmuch-help)
976     (define-key map "q" 'kill-this-buffer)
977     (define-key map "x" 'kill-this-buffer)
978     (define-key map (kbd "<DEL>") 'notmuch-search-scroll-down)
979     (define-key map "b" 'notmuch-search-scroll-down)
980     (define-key map " " 'notmuch-search-scroll-up)
981     (define-key map "<" 'notmuch-search-first-thread)
982     (define-key map ">" 'notmuch-search-last-thread)
983     (define-key map "p" 'notmuch-search-previous-thread)
984     (define-key map "n" 'notmuch-search-next-thread)
985     (define-key map "r" 'notmuch-search-reply-to-thread)
986     (define-key map "m" 'message-mail)
987     (define-key map "s" 'notmuch-search)
988     (define-key map "o" 'notmuch-search-toggle-order)
989     (define-key map "=" 'notmuch-search-refresh-view)
990     (define-key map "t" 'notmuch-search-filter-by-tag)
991     (define-key map "f" 'notmuch-search-filter)
992     (define-key map [mouse-1] 'notmuch-search-show-thread)
993     (define-key map "*" 'notmuch-search-operate-all)
994     (define-key map "a" 'notmuch-search-archive-thread)
995     (define-key map "-" 'notmuch-search-remove-tag)
996     (define-key map "+" 'notmuch-search-add-tag)
997     (define-key map (kbd "RET") 'notmuch-search-show-thread)
998     map)
999   "Keymap for \"notmuch search\" buffers.")
1000 (fset 'notmuch-search-mode-map notmuch-search-mode-map)
1001
1002 (defvar notmuch-search-query-string)
1003 (defvar notmuch-search-oldest-first t
1004   "Show the oldest mail first in the search-mode")
1005
1006 (defvar notmuch-search-disjunctive-regexp      "\\<[oO][rR]\\>")
1007
1008 (defun notmuch-search-scroll-up ()
1009   "Move forward through search results by one window's worth."
1010   (interactive)
1011   (condition-case nil
1012       (scroll-up nil)
1013     ((end-of-buffer) (notmuch-search-last-thread))))
1014
1015 (defun notmuch-search-scroll-down ()
1016   "Move backward through the search results by one window's worth."
1017   (interactive)
1018   ; I don't know why scroll-down doesn't signal beginning-of-buffer
1019   ; the way that scroll-up signals end-of-buffer, but c'est la vie.
1020   ;
1021   ; So instead of trapping a signal we instead check whether the
1022   ; window begins on the first line of the buffer and if so, move
1023   ; directly to that position. (We have to count lines since the
1024   ; window-start position is not the same as point-min due to the
1025   ; invisible thread-ID characters on the first line.
1026   (if (equal (count-lines (point-min) (window-start)) 0)
1027       (goto-char (point-min))
1028     (scroll-down nil)))
1029
1030 (defun notmuch-search-next-thread ()
1031   "Select the next thread in the search results."
1032   (interactive)
1033   (forward-line 1))
1034
1035 (defun notmuch-search-previous-thread ()
1036   "Select the previous thread in the search results."
1037   (interactive)
1038   (forward-line -1))
1039
1040 (defun notmuch-search-last-thread ()
1041   "Select the last thread in the search results."
1042   (interactive)
1043   (goto-char (point-max))
1044   (forward-line -2))
1045
1046 (defun notmuch-search-first-thread ()
1047   "Select the first thread in the search results."
1048   (interactive)
1049   (goto-char (point-min)))
1050
1051 (defface notmuch-message-summary-face
1052  '((((class color) (background light)) (:background "#f0f0f0"))
1053    (((class color) (background dark)) (:background "#303030")))
1054  "Face for the single-line message summary in notmuch-show-mode."
1055  :group 'notmuch)
1056
1057 (defface notmuch-tag-face
1058   '((((class color)
1059       (background dark))
1060      (:foreground "OliveDrab1"))
1061     (((class color)
1062       (background light))
1063      (:foreground "navy blue" :bold t))
1064     (t
1065      (:bold t)))
1066   "Notmuch search mode face used to highligh tags."
1067   :group 'notmuch)
1068
1069 (defvar notmuch-tag-face-alist nil
1070   "List containing the tag list that need to be highlighed")
1071
1072 (defvar notmuch-search-font-lock-keywords  nil)
1073
1074 ;;;###autoload
1075 (defun notmuch-search-mode ()
1076   "Major mode displaying results of a notmuch search.
1077
1078 This buffer contains the results of a \"notmuch search\" of your
1079 email archives. Each line in the buffer represents a single
1080 thread giving a summary of the thread (a relative date, the
1081 number of matched messages and total messages in the thread,
1082 participants in the thread, a representative subject line, and
1083 any tags).
1084
1085 Pressing \\[notmuch-search-show-thread] on any line displays that thread. The '\\[notmuch-search-add-tag]' and '\\[notmuch-search-remove-tag]'
1086 keys can be used to add or remove tags from a thread. The '\\[notmuch-search-archive-thread]' key
1087 is a convenience for archiving a thread (removing the \"inbox\"
1088 tag). The '\\[notmuch-search-operate-all]' key can be used to add or remove a tag from all
1089 threads in the current buffer.
1090
1091 Other useful commands are '\\[notmuch-search-filter]' for filtering the current search
1092 based on an additional query string, '\\[notmuch-search-filter-by-tag]' for filtering to include
1093 only messages with a given tag, and '\\[notmuch-search]' to execute a new, global
1094 search.
1095
1096 Complete list of currently available key bindings:
1097
1098 \\{notmuch-search-mode-map}"
1099   (interactive)
1100   (kill-all-local-variables)
1101   (make-local-variable 'notmuch-search-query-string)
1102   (make-local-variable 'notmuch-search-oldest-first)
1103   (set (make-local-variable 'scroll-preserve-screen-position) t)
1104   (add-to-invisibility-spec 'notmuch-search)
1105   (use-local-map notmuch-search-mode-map)
1106   (setq truncate-lines t)
1107   (setq major-mode 'notmuch-search-mode
1108         mode-name "notmuch-search")
1109   (setq buffer-read-only t)
1110   (if (not notmuch-tag-face-alist)
1111       (add-to-list 'notmuch-search-font-lock-keywords (list
1112                 "(\\([^)]*\\))$" '(1  'notmuch-tag-face)))
1113     (let ((notmuch-search-tags (mapcar 'car notmuch-tag-face-alist)))
1114       (loop for notmuch-search-tag  in notmuch-search-tags
1115             do (add-to-list 'notmuch-search-font-lock-keywords (list
1116                         (concat "([^)]*\\(" notmuch-search-tag "\\)[^)]*)$")
1117                         `(1  ,(cdr (assoc notmuch-search-tag notmuch-tag-face-alist))))))))
1118   (set (make-local-variable 'font-lock-defaults)
1119          '(notmuch-search-font-lock-keywords t)))
1120
1121 (defun notmuch-search-find-thread-id ()
1122   "Return the thread for the current thread"
1123   (get-text-property (point) 'notmuch-search-thread-id))
1124
1125 (defun notmuch-search-find-authors ()
1126   "Return the authors for the current thread"
1127   (get-text-property (point) 'notmuch-search-authors))
1128
1129 (defun notmuch-search-find-subject ()
1130   "Return the subject for the current thread"
1131   (get-text-property (point) 'notmuch-search-subject))
1132
1133 (defun notmuch-search-show-thread ()
1134   "Display the currently selected thread."
1135   (interactive)
1136   (let ((thread-id (notmuch-search-find-thread-id)))
1137     (if (> (length thread-id) 0)
1138         (notmuch-show thread-id (current-buffer) notmuch-search-query-string)
1139       (error "End of search results"))))
1140
1141 (defun notmuch-search-reply-to-thread ()
1142   "Begin composing a reply to the entire current thread in a new buffer."
1143   (interactive)
1144   (let ((message-id (notmuch-search-find-thread-id)))
1145     (notmuch-reply message-id)))
1146
1147 (defun notmuch-call-notmuch-process (&rest args)
1148   "Synchronously invoke \"notmuch\" with the given list of arguments.
1149
1150 Output from the process will be presented to the user as an error
1151 and will also appear in a buffer named \"*Notmuch errors*\"."
1152   (let ((error-buffer (get-buffer-create "*Notmuch errors*")))
1153     (with-current-buffer error-buffer
1154         (erase-buffer))
1155     (if (eq (apply 'call-process notmuch-command nil error-buffer nil args) 0)
1156         (point)
1157       (progn
1158         (with-current-buffer error-buffer
1159           (let ((beg (point-min))
1160                 (end (- (point-max) 1)))
1161             (error (buffer-substring beg end))
1162             ))))))
1163
1164 (defun notmuch-search-set-tags (tags)
1165   (save-excursion
1166     (end-of-line)
1167     (re-search-backward "(")
1168     (forward-char)
1169     (let ((beg (point))
1170           (inhibit-read-only t))
1171       (re-search-forward ")")
1172       (backward-char)
1173       (let ((end (point)))
1174         (delete-region beg end)
1175         (insert (mapconcat  'identity tags " "))))))
1176
1177 (defun notmuch-search-get-tags ()
1178   (save-excursion
1179     (end-of-line)
1180     (re-search-backward "(")
1181     (let ((beg (+ (point) 1)))
1182       (re-search-forward ")")
1183       (let ((end (- (point) 1)))
1184         (split-string (buffer-substring beg end))))))
1185
1186 (defun notmuch-search-add-tag (tag)
1187   "Add a tag to the currently selected thread.
1188
1189 The tag is added to messages in the currently selected thread
1190 which match the current search terms."
1191   (interactive
1192    (list (notmuch-select-tag-with-completion "Tag to add: ")))
1193   (notmuch-call-notmuch-process "tag" (concat "+" tag) (notmuch-search-find-thread-id))
1194   (notmuch-search-set-tags (delete-dups (sort (cons tag (notmuch-search-get-tags)) 'string<))))
1195
1196 (defun notmuch-search-remove-tag (tag)
1197   "Remove a tag from the currently selected thread.
1198
1199 The tag is removed from messages in the currently selected thread
1200 which match the current search terms."
1201   (interactive
1202    (list (notmuch-select-tag-with-completion "Tag to remove: " (notmuch-search-find-thread-id))))
1203   (notmuch-call-notmuch-process "tag" (concat "-" tag) (notmuch-search-find-thread-id))
1204   (notmuch-search-set-tags (delete tag (notmuch-search-get-tags))))
1205
1206 (defun notmuch-search-archive-thread ()
1207   "Archive the currently selected thread (remove its \"inbox\" tag).
1208
1209 This function advances the next thread when finished."
1210   (interactive)
1211   (notmuch-search-remove-tag "inbox")
1212   (forward-line))
1213
1214 (defun notmuch-search-process-sentinel (proc msg)
1215   "Add a message to let user know when \"notmuch search\" exits"
1216   (let ((buffer (process-buffer proc))
1217         (status (process-status proc))
1218         (exit-status (process-exit-status proc)))
1219     (if (memq status '(exit signal))
1220         (if (buffer-live-p buffer)
1221             (with-current-buffer buffer
1222               (save-excursion
1223                 (let ((inhibit-read-only t))
1224                   (goto-char (point-max))
1225                   (if (eq status 'signal)
1226                       (insert "Incomplete search results (search process was killed).\n"))
1227                   (if (eq status 'exit)
1228                       (progn
1229                         (insert "End of search results.")
1230                         (if (not (= exit-status 0))
1231                             (insert (format " (process returned %d)" exit-status)))
1232                         (insert "\n"))))))))))
1233
1234 (defun notmuch-search-process-filter (proc string)
1235   "Process and filter the output of \"notmuch search\""
1236   (let ((buffer (process-buffer proc)))
1237     (if (buffer-live-p buffer)
1238         (with-current-buffer buffer
1239           (save-excursion
1240             (let ((line 0)
1241                   (more t)
1242                   (inhibit-read-only t))
1243               (while more
1244                 (if (string-match "^\\(thread:[0-9A-Fa-f]*\\) \\(.*\\) \\(\\[[0-9/]*\\]\\) \\([^:]*\\); \\(.*\\) (\\([^()]*\\))$" string line)
1245                     (let* ((thread-id (match-string 1 string))
1246                            (date (match-string 2 string))
1247                            (count (match-string 3 string))
1248                            (authors (match-string 4 string))
1249                            (authors-length (length authors))
1250                            (subject (match-string 5 string))
1251                            (tags (match-string 6 string)))
1252                       (if (> authors-length 40)
1253                           (set 'authors (concat (substring authors 0 (- 40 3)) "...")))
1254                       (goto-char (point-max))
1255                       (let ((beg (point-marker)))
1256                         (insert (format "%s %-7s %-40s %s (%s)\n" date count authors subject tags))
1257                         (put-text-property beg (point-marker) 'notmuch-search-thread-id thread-id)
1258                         (put-text-property beg (point-marker) 'notmuch-search-authors authors)
1259                         (put-text-property beg (point-marker) 'notmuch-search-subject subject))
1260                       (set 'line (match-end 0)))
1261                   (set 'more nil))))))
1262       (delete-process proc))))
1263
1264 (defun notmuch-search-operate-all (action)
1265   "Add/remove tags from all matching messages.
1266
1267 Tis command adds or removes tags from all messages matching the
1268 current search terms. When called interactively, this command
1269 will prompt for tags to be added or removed. Tags prefixed with
1270 '+' will be added and tags prefixed with '-' will be removed.
1271
1272 Each character of the tag name may consist of alphanumeric
1273 characters as well as `_.+-'.
1274 "
1275   (interactive "sOperation (+add -drop): notmuch tag ")
1276   (let ((action-split (split-string action " +")))
1277     ;; Perform some validation
1278     (let ((words action-split))
1279       (when (null words) (error "No operation given"))
1280       (while words
1281         (unless (string-match-p "^[-+][-+_.[:word:]]+$" (car words))
1282           (error "Action must be of the form `+thistag -that_tag'"))
1283         (setq words (cdr words))))
1284     (apply 'notmuch-call-notmuch-process "tag"
1285            (append action-split (list notmuch-search-query-string) nil))))
1286
1287 ;;;###autoload
1288 (defun notmuch-search (query &optional oldest-first)
1289   "Run \"notmuch search\" with the given query string and display results."
1290   (interactive "sNotmuch search: ")
1291   (let ((buffer (get-buffer-create (concat "*notmuch-search-" query "*"))))
1292     (switch-to-buffer buffer)
1293     (notmuch-search-mode)
1294     (set 'notmuch-search-query-string query)
1295     (set 'notmuch-search-oldest-first oldest-first)
1296     (let ((proc (get-buffer-process (current-buffer)))
1297           (inhibit-read-only t))
1298       (if proc
1299           (error "notmuch search process already running for query `%s'" query)
1300         )
1301       (erase-buffer)
1302       (goto-char (point-min))
1303       (save-excursion
1304         (let ((proc (start-process-shell-command
1305                      "notmuch-search" buffer notmuch-command "search"
1306                      (if oldest-first "--sort=oldest-first" "--sort=newest-first")
1307                      (shell-quote-argument query))))
1308           (set-process-sentinel proc 'notmuch-search-process-sentinel)
1309           (set-process-filter proc 'notmuch-search-process-filter))))
1310     (run-hooks 'notmuch-search-hook)))
1311
1312 (defun notmuch-search-refresh-view ()
1313   "Refresh the current view.
1314
1315 Kills the current buffer and runs a new search with the same
1316 query string as the current search. If the current thread is in
1317 the new search results, then point will be placed on the same
1318 thread. Otherwise, point will be moved to attempt to be in the
1319 same relative position within the new buffer."
1320   (interactive)
1321   (let ((here (point))
1322         (oldest-first notmuch-search-oldest-first)
1323         (thread (notmuch-search-find-thread-id))
1324         (query notmuch-search-query-string))
1325     (kill-this-buffer)
1326     (notmuch-search query oldest-first)
1327     (goto-char (point-min))
1328     (if (re-search-forward (concat "^" thread) nil t)
1329         (beginning-of-line)
1330       (goto-char here))))
1331
1332 (defun notmuch-search-toggle-order ()
1333   "Toggle the current search order.
1334
1335 By default, the \"inbox\" view created by `notmuch' is displayed
1336 in chronological order (oldest thread at the beginning of the
1337 buffer), while any global searches created by `notmuch-search'
1338 are displayed in reverse-chronological order (newest thread at
1339 the beginning of the buffer).
1340
1341 This command toggles the sort order for the current search.
1342
1343 Note that any filtered searches created by
1344 `notmuch-search-filter' retain the search order of the parent
1345 search."
1346   (interactive)
1347   (set 'notmuch-search-oldest-first (not notmuch-search-oldest-first))
1348   (notmuch-search-refresh-view))
1349
1350 (defun notmuch-search-filter (query)
1351   "Filter the current search results based on an additional query string.
1352
1353 Runs a new search matching only messages that match both the
1354 current search results AND the additional query string provided."
1355   (interactive "sFilter search: ")
1356   (let ((grouped-query (if (string-match-p notmuch-search-disjunctive-regexp query) (concat "( " query " )") query)))
1357     (notmuch-search (concat notmuch-search-query-string " and " grouped-query) notmuch-search-oldest-first)))
1358
1359 (defun notmuch-search-filter-by-tag (tag)
1360   "Filter the current search results based on a single tag.
1361
1362 Runs a new search matching only messages that match both the
1363 current search results AND that are tagged with the given tag."
1364   (interactive
1365    (list (notmuch-select-tag-with-completion "Filter by tag: ")))
1366   (notmuch-search (concat notmuch-search-query-string " and tag:" tag) notmuch-search-oldest-first))
1367
1368
1369 ;;;###autoload
1370 (defun notmuch ()
1371   "Run notmuch to display all mail with tag of 'inbox'"
1372   (interactive)
1373   (notmuch-search "tag:inbox" notmuch-search-oldest-first))
1374
1375 (setq mail-user-agent 'message-user-agent)
1376
1377 (defvar notmuch-folder-mode-map
1378   (let ((map (make-sparse-keymap)))
1379     (define-key map "?" 'notmuch-help)
1380     (define-key map "x" 'kill-this-buffer)
1381     (define-key map "q" 'kill-this-buffer)
1382     (define-key map ">" 'notmuch-folder-last)
1383     (define-key map "<" 'notmuch-folder-first)
1384     (define-key map "=" 'notmuch-folder)
1385     (define-key map "s" 'notmuch-search)
1386     (define-key map [mouse-1] 'notmuch-folder-show-search)
1387     (define-key map (kbd "RET") 'notmuch-folder-show-search)
1388     (define-key map "p" 'notmuch-folder-previous)
1389     (define-key map "n" 'notmuch-folder-next)
1390     map)
1391   "Keymap for \"notmuch folder\" buffers.")
1392
1393 (fset 'notmuch-folder-mode-map notmuch-folder-mode-map)
1394
1395 (defcustom notmuch-folders (quote (("inbox" . "tag:inbox") ("unread" . "tag:unread")))
1396   "List of searches for the notmuch folder view"
1397   :type '(alist :key-type (string) :value-type (string))
1398   :group 'notmuch)
1399
1400 (defun notmuch-folder-mode ()
1401   "Major mode for showing notmuch 'folders'.
1402
1403 This buffer contains a list of message counts returned by a
1404 customizable set of searches of your email archives. Each line in
1405 the buffer shows the name of a saved search and the resulting
1406 message count.
1407
1408 Pressing RET on any line opens a search window containing the
1409 results for the saved search on that line.
1410
1411 Here is an example of how the search list could be
1412 customized, (the following text would be placed in your ~/.emacs
1413 file):
1414
1415 (setq notmuch-folders '((\"inbox\" . \"tag:inbox\")
1416                         (\"unread\" . \"tag:inbox AND tag:unread\")
1417                         (\"notmuch\" . \"tag:inbox AND to:notmuchmail.org\")))
1418
1419 Of course, you can have any number of folders, each configured
1420 with any supported search terms (see \"notmuch help search-terms\").
1421
1422 Currently available key bindings:
1423
1424 \\{notmuch-folder-mode-map}"
1425   (interactive)
1426   (kill-all-local-variables)
1427   (use-local-map 'notmuch-folder-mode-map)
1428   (setq truncate-lines t)
1429   (hl-line-mode 1)
1430   (setq major-mode 'notmuch-folder-mode
1431         mode-name "notmuch-folder")
1432   (setq buffer-read-only t))
1433
1434 (defun notmuch-folder-next ()
1435   "Select the next folder in the list."
1436   (interactive)
1437   (forward-line 1)
1438   (if (eobp)
1439       (forward-line -1)))
1440
1441 (defun notmuch-folder-previous ()
1442   "Select the previous folder in the list."
1443   (interactive)
1444   (forward-line -1))
1445
1446 (defun notmuch-folder-first ()
1447   "Select the first folder in the list."
1448   (interactive)
1449   (goto-char (point-min)))
1450
1451 (defun notmuch-folder-last ()
1452   "Select the last folder in the list."
1453   (interactive)
1454   (goto-char (point-max))
1455   (forward-line -1))
1456
1457 (defun notmuch-folder-add (folders)
1458   (if folders
1459       (let ((name (car (car folders)))
1460             (inhibit-read-only t)
1461             (search (cdr (car folders))))
1462         (insert name)
1463         (indent-to 16 1)
1464         (call-process notmuch-command nil t nil "count" search)
1465         (notmuch-folder-add (cdr folders)))))
1466
1467 (defun notmuch-folder-find-name ()
1468   (save-excursion
1469     (beginning-of-line)
1470     (let ((beg (point)))
1471       (forward-word)
1472       (filter-buffer-substring beg (point)))))
1473
1474 (defun notmuch-folder-show-search (&optional folder)
1475   "Show a search window for the search related to the specified folder."
1476   (interactive)
1477   (if (null folder)
1478       (setq folder (notmuch-folder-find-name)))
1479   (let ((search (assoc folder notmuch-folders)))
1480     (if search
1481         (notmuch-search (cdr search) notmuch-search-oldest-first))))
1482
1483 ;;;###autoload
1484 (defun notmuch-folder ()
1485   "Show the notmuch folder view and update the displayed counts."
1486   (interactive)
1487   (let ((buffer (get-buffer-create "*notmuch-folders*")))
1488     (switch-to-buffer buffer)
1489     (let ((inhibit-read-only t)
1490           (n (line-number-at-pos)))
1491       (erase-buffer)
1492       (notmuch-folder-mode)
1493       (notmuch-folder-add notmuch-folders)
1494       (goto-char (point-min))
1495       (goto-line n))))
1496
1497 (provide 'notmuch)