1 ;; notmuch.el --- run notmuch within emacs
3 ;; Copyright © Carl Worth
5 ;; This file is part of Notmuch.
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.
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.
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/>.
20 ;; Authors: Carl Worth <cworth@cworth.org>
22 ;; This is an emacs-based interface to the notmuch mail system.
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.
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:
33 ;; sudo make install-emacs
37 ;; Then, to actually run it, add:
41 ;; to your ~/.emacs file, and then run "M-x notmuch" from within emacs,
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).
50 (eval-when-compile (require 'cl))
55 (require 'notmuch-lib)
56 (require 'notmuch-show)
57 (require 'notmuch-mua)
58 (require 'notmuch-hello)
59 (require 'notmuch-maildir-fcc)
60 (require 'notmuch-message)
62 (defcustom notmuch-search-result-format
65 ("authors" . "%-20s ")
68 "Search result formatting. Supported fields are:
69 date, count, authors, subject, tags
71 (setq notmuch-search-result-format \(\(\"authors\" . \"%-40s\"\)
72 \(\"subject\" . \"%s\"\)\)\)"
73 :type '(alist :key-type (string) :value-type (string))
74 :group 'notmuch-search)
76 (defvar notmuch-query-history nil
77 "Variable to store minibuffer history for notmuch queries")
79 (defun notmuch-tag-completions (&optional prefixes search-terms)
82 (with-output-to-string
83 (with-current-buffer standard-output
84 (apply 'call-process notmuch-command nil t
85 nil "search-tags" search-terms)))
91 (mapcar (lambda (prefix)
92 (concat prefix tag)) prefixes))
95 (defun notmuch-select-tag-with-completion (prompt &rest search-terms)
96 (let ((tag-list (notmuch-tag-completions nil search-terms)))
97 (completing-read prompt tag-list)))
99 (defun notmuch-select-tags-with-completion (prompt &optional prefixes &rest search-terms)
100 (let ((tag-list (notmuch-tag-completions prefixes search-terms))
102 ;; By default, space is bound to "complete word" function.
103 ;; Re-bind it to insert a space instead. Note that <tab>
104 ;; still does the completion.
105 (crm-local-completion-map
106 (let ((map (make-sparse-keymap)))
107 (set-keymap-parent map crm-local-completion-map)
108 (define-key map " " 'self-insert-command)
110 (delete "" (completing-read-multiple prompt tag-list))))
112 (defun notmuch-foreach-mime-part (function mm-handle)
113 (cond ((stringp (car mm-handle))
114 (dolist (part (cdr mm-handle))
115 (notmuch-foreach-mime-part function part)))
116 ((bufferp (car mm-handle))
117 (funcall function mm-handle))
118 (t (dolist (part mm-handle)
119 (notmuch-foreach-mime-part function part)))))
121 (defun notmuch-count-attachments (mm-handle)
123 (notmuch-foreach-mime-part
125 (let ((disposition (mm-handle-disposition p)))
126 (and (listp disposition)
127 (or (equal (car disposition) "attachment")
128 (and (equal (car disposition) "inline")
129 (assq 'filename disposition)))
134 (defun notmuch-save-attachments (mm-handle &optional queryp)
135 (notmuch-foreach-mime-part
137 (let ((disposition (mm-handle-disposition p)))
138 (and (listp disposition)
139 (or (equal (car disposition) "attachment")
140 (and (equal (car disposition) "inline")
141 (assq 'filename disposition)))
144 (concat "Save '" (cdr (assq 'filename disposition)) "' ")))
148 (defun notmuch-documentation-first-line (symbol)
149 "Return the first line of the documentation string for SYMBOL."
150 (let ((doc (documentation symbol)))
153 (insert (documentation symbol t))
154 (goto-char (point-min))
157 (buffer-substring beg (point))))
160 (defun notmuch-prefix-key-description (key)
161 "Given a prefix key code, return a human-readable string representation.
163 This is basically just `format-kbd-macro' but we also convert ESC to M-."
164 (let ((desc (format-kbd-macro (vector key))))
165 (if (string= desc "ESC")
169 ;; I would think that emacs would have code handy for walking a keymap
170 ;; and generating strings for each key, and I would prefer to just call
171 ;; that. But I couldn't find any (could be all implemented in C I
172 ;; suppose), so I wrote my own here.
173 (defun notmuch-substitute-one-command-key-with-prefix (prefix binding)
174 "For a key binding, return a string showing a human-readable
175 representation of the prefixed key as well as the first line of
176 documentation from the bound function.
178 For a mouse binding, return nil."
179 (let ((key (car binding))
180 (action (cdr binding)))
181 (if (mouse-event-p key)
184 (let ((substitute (apply-partially 'notmuch-substitute-one-command-key-with-prefix (notmuch-prefix-key-description key)))
186 (map-keymap (lambda (a b)
187 (push (cons a b) as-list))
189 (mapconcat substitute as-list "\n"))
190 (concat prefix (format-kbd-macro (vector key))
192 (notmuch-documentation-first-line action))))))
194 (defun notmuch-substitute-command-keys-one (key)
195 ;; A `keymap' key indicates inheritance from a parent keymap - the
196 ;; inherited mappings follow, so there is nothing to print for
198 (when (not (eq key 'keymap))
199 (notmuch-substitute-one-command-key-with-prefix nil key)))
201 (defun notmuch-substitute-command-keys (doc)
202 "Like `substitute-command-keys' but with documentation, not function names."
204 (while (string-match "\\\\{\\([^}[:space:]]*\\)}" doc beg)
205 (let* ((keymap-name (substring doc (match-beginning 1) (match-end 1)))
206 (keymap (symbol-value (intern keymap-name))))
207 (setq doc (replace-match
208 (mapconcat #'notmuch-substitute-command-keys-one
211 (setq beg (match-end 0)))
214 (defun notmuch-help ()
215 "Display help for the current notmuch mode."
217 (let* ((mode major-mode)
218 (doc (substitute-command-keys (notmuch-substitute-command-keys (documentation mode t)))))
219 (with-current-buffer (generate-new-buffer "*notmuch-help*")
221 (goto-char (point-min))
222 (set-buffer-modified-p nil)
223 (view-buffer (current-buffer) 'kill-buffer-if-not-modified))))
225 (defcustom notmuch-search-hook '(hl-line-mode)
226 "List of functions to call when notmuch displays the search results."
228 :options '(hl-line-mode)
229 :group 'notmuch-search
230 :group 'notmuch-hooks)
232 (defvar notmuch-search-mode-map
233 (let ((map (make-sparse-keymap)))
234 (define-key map "?" 'notmuch-help)
235 (define-key map "q" 'notmuch-search-quit)
236 (define-key map "x" 'notmuch-search-quit)
237 (define-key map (kbd "<DEL>") 'notmuch-search-scroll-down)
238 (define-key map "b" 'notmuch-search-scroll-down)
239 (define-key map " " 'notmuch-search-scroll-up)
240 (define-key map "<" 'notmuch-search-first-thread)
241 (define-key map ">" 'notmuch-search-last-thread)
242 (define-key map "p" 'notmuch-search-previous-thread)
243 (define-key map "n" 'notmuch-search-next-thread)
244 (define-key map "r" 'notmuch-search-reply-to-thread-sender)
245 (define-key map "R" 'notmuch-search-reply-to-thread)
246 (define-key map "m" 'notmuch-mua-new-mail)
247 (define-key map "s" 'notmuch-search)
248 (define-key map "o" 'notmuch-search-toggle-order)
249 (define-key map "c" 'notmuch-search-stash-map)
250 (define-key map "=" 'notmuch-search-refresh-view)
251 (define-key map "G" 'notmuch-search-poll-and-refresh-view)
252 (define-key map "t" 'notmuch-search-filter-by-tag)
253 (define-key map "f" 'notmuch-search-filter)
254 (define-key map [mouse-1] 'notmuch-search-show-thread)
255 (define-key map "*" 'notmuch-search-operate-all)
256 (define-key map "a" 'notmuch-search-archive-thread)
257 (define-key map "-" 'notmuch-search-remove-tag)
258 (define-key map "+" 'notmuch-search-add-tag)
259 (define-key map (kbd "RET") 'notmuch-search-show-thread)
261 "Keymap for \"notmuch search\" buffers.")
262 (fset 'notmuch-search-mode-map notmuch-search-mode-map)
264 (defvar notmuch-search-stash-map
265 (let ((map (make-sparse-keymap)))
266 (define-key map "i" 'notmuch-search-stash-thread-id)
268 "Submap for stash commands")
269 (fset 'notmuch-search-stash-map notmuch-search-stash-map)
271 (defun notmuch-search-stash-thread-id ()
272 "Copy thread ID of current thread to kill-ring."
274 (notmuch-common-do-stash (notmuch-search-find-thread-id)))
276 (defvar notmuch-search-query-string)
277 (defvar notmuch-search-target-thread)
278 (defvar notmuch-search-target-line)
279 (defvar notmuch-search-continuation)
281 (defvar notmuch-search-disjunctive-regexp "\\<[oO][rR]\\>")
283 (defun notmuch-search-quit ()
284 "Exit the search buffer, calling any defined continuation function."
286 (let ((continuation notmuch-search-continuation))
287 (notmuch-kill-this-buffer)
289 (funcall continuation))))
291 (defun notmuch-search-scroll-up ()
292 "Move forward through search results by one window's worth."
296 ((end-of-buffer) (notmuch-search-last-thread))))
298 (defun notmuch-search-scroll-down ()
299 "Move backward through the search results by one window's worth."
301 ;; I don't know why scroll-down doesn't signal beginning-of-buffer
302 ;; the way that scroll-up signals end-of-buffer, but c'est la vie.
304 ;; So instead of trapping a signal we instead check whether the
305 ;; window begins on the first line of the buffer and if so, move
306 ;; directly to that position. (We have to count lines since the
307 ;; window-start position is not the same as point-min due to the
308 ;; invisible thread-ID characters on the first line.
309 (if (equal (count-lines (point-min) (window-start)) 0)
310 (goto-char (point-min))
313 (defun notmuch-search-next-thread ()
314 "Select the next thread in the search results."
318 (defun notmuch-search-previous-thread ()
319 "Select the previous thread in the search results."
323 (defun notmuch-search-last-thread ()
324 "Select the last thread in the search results."
326 (goto-char (point-max))
329 (defun notmuch-search-first-thread ()
330 "Select the first thread in the search results."
332 (goto-char (point-min)))
334 (defface notmuch-message-summary-face
335 '((((class color) (background light)) (:background "#f0f0f0"))
336 (((class color) (background dark)) (:background "#303030")))
337 "Face for the single-line message summary in notmuch-show-mode."
339 :group 'notmuch-faces)
341 (defface notmuch-search-date
342 '((t :inherit default))
343 "Face used in search mode for dates."
344 :group 'notmuch-search
345 :group 'notmuch-faces)
347 (defface notmuch-search-count
348 '((t :inherit default))
349 "Face used in search mode for the count matching the query."
350 :group 'notmuch-search
351 :group 'notmuch-faces)
353 (defface notmuch-search-subject
354 '((t :inherit default))
355 "Face used in search mode for subjects."
356 :group 'notmuch-search
357 :group 'notmuch-faces)
359 (defface notmuch-search-matching-authors
360 '((t :inherit default))
361 "Face used in search mode for authors matching the query."
362 :group 'notmuch-search
363 :group 'notmuch-faces)
365 (defface notmuch-search-non-matching-authors
368 (:foreground "grey30"))
371 (:foreground "grey60"))
374 "Face used in search mode for authors not matching the query."
375 :group 'notmuch-search
376 :group 'notmuch-faces)
378 (defface notmuch-tag-face
381 (:foreground "OliveDrab1"))
384 (:foreground "navy blue" :bold t))
387 "Face used in search mode face for tags."
388 :group 'notmuch-search
389 :group 'notmuch-faces)
391 (defun notmuch-search-mode ()
392 "Major mode displaying results of a notmuch search.
394 This buffer contains the results of a \"notmuch search\" of your
395 email archives. Each line in the buffer represents a single
396 thread giving a summary of the thread (a relative date, the
397 number of matched messages and total messages in the thread,
398 participants in the thread, a representative subject line, and
401 Pressing \\[notmuch-search-show-thread] on any line displays that thread. The '\\[notmuch-search-add-tag]' and '\\[notmuch-search-remove-tag]'
402 keys can be used to add or remove tags from a thread. The '\\[notmuch-search-archive-thread]' key
403 is a convenience for archiving a thread (removing the \"inbox\"
404 tag). The '\\[notmuch-search-operate-all]' key can be used to add or remove a tag from all
405 threads in the current buffer.
407 Other useful commands are '\\[notmuch-search-filter]' for filtering the current search
408 based on an additional query string, '\\[notmuch-search-filter-by-tag]' for filtering to include
409 only messages with a given tag, and '\\[notmuch-search]' to execute a new, global
412 Complete list of currently available key bindings:
414 \\{notmuch-search-mode-map}"
416 (kill-all-local-variables)
417 (make-local-variable 'notmuch-search-query-string)
418 (make-local-variable 'notmuch-search-oldest-first)
419 (make-local-variable 'notmuch-search-target-thread)
420 (make-local-variable 'notmuch-search-target-line)
421 (set (make-local-variable 'notmuch-search-continuation) nil)
422 (set (make-local-variable 'scroll-preserve-screen-position) t)
423 (add-to-invisibility-spec (cons 'ellipsis t))
424 (use-local-map notmuch-search-mode-map)
425 (setq truncate-lines t)
426 (setq major-mode 'notmuch-search-mode
427 mode-name "notmuch-search")
428 (setq buffer-read-only t))
430 (defun notmuch-search-properties-in-region (property beg end)
433 (last-line (line-number-at-pos end))
434 (max-line (- (line-number-at-pos (point-max)) 2)))
437 (while (<= (line-number-at-pos) (min last-line max-line))
438 (setq output (cons (get-text-property (point) property) output))
442 (defun notmuch-search-find-thread-id ()
443 "Return the thread for the current thread"
444 (get-text-property (point) 'notmuch-search-thread-id))
446 (defun notmuch-search-find-thread-id-region (beg end)
447 "Return a list of threads for the current region"
448 (notmuch-search-properties-in-region 'notmuch-search-thread-id beg end))
450 (defun notmuch-search-find-authors ()
451 "Return the authors for the current thread"
452 (get-text-property (point) 'notmuch-search-authors))
454 (defun notmuch-search-find-authors-region (beg end)
455 "Return a list of authors for the current region"
456 (notmuch-search-properties-in-region 'notmuch-search-authors beg end))
458 (defun notmuch-search-find-subject ()
459 "Return the subject for the current thread"
460 (get-text-property (point) 'notmuch-search-subject))
462 (defun notmuch-search-find-subject-region (beg end)
463 "Return a list of authors for the current region"
464 (notmuch-search-properties-in-region 'notmuch-search-subject beg end))
466 (defun notmuch-search-show-thread (&optional crypto-switch)
467 "Display the currently selected thread."
469 (let ((thread-id (notmuch-search-find-thread-id))
470 (subject (notmuch-prettify-subject (notmuch-search-find-subject))))
471 (if (> (length thread-id) 0)
472 (notmuch-show thread-id
474 notmuch-search-query-string
475 ;; Name the buffer based on the subject.
476 (concat "*" (truncate-string-to-width subject 30 nil nil t) "*")
478 (message "End of search results."))))
480 (defun notmuch-search-reply-to-thread (&optional prompt-for-sender)
481 "Begin composing a reply-all to the entire current thread in a new buffer."
483 (let ((message-id (notmuch-search-find-thread-id)))
484 (notmuch-mua-new-reply message-id prompt-for-sender t)))
486 (defun notmuch-search-reply-to-thread-sender (&optional prompt-for-sender)
487 "Begin composing a reply to the entire current thread in a new buffer."
489 (let ((message-id (notmuch-search-find-thread-id)))
490 (notmuch-mua-new-reply message-id prompt-for-sender nil)))
492 (defun notmuch-call-notmuch-process (&rest args)
493 "Synchronously invoke \"notmuch\" with the given list of arguments.
495 Output from the process will be presented to the user as an error
496 and will also appear in a buffer named \"*Notmuch errors*\"."
497 (let ((error-buffer (get-buffer-create "*Notmuch errors*")))
498 (with-current-buffer error-buffer
500 (if (eq (apply 'call-process notmuch-command nil error-buffer nil args) 0)
503 (with-current-buffer error-buffer
504 (let ((beg (point-min))
505 (end (- (point-max) 1)))
506 (error (buffer-substring beg end))
509 (defun notmuch-tag (query &rest tags)
510 "Add/remove tags in TAGS to messages matching QUERY.
512 TAGS should be a list of strings of the form \"+TAG\" or \"-TAG\" and
513 QUERY should be a string containing the search-query.
515 Note: Other code should always use this function alter tags of
516 messages instead of running (notmuch-call-notmuch-process \"tag\" ..)
517 directly, so that hooks specified in notmuch-before-tag-hook and
518 notmuch-after-tag-hook will be run."
519 ;; Perform some validation
520 (when (null tags) (error "No tags given"))
522 (unless (string-match-p "^[-+][-+_.[:word:]]+$" tag)
523 (error "Tag must be of the form `+this_tag' or `-that_tag'")))
525 (run-hooks 'notmuch-before-tag-hook)
526 (apply 'notmuch-call-notmuch-process
527 (append (list "tag") tags (list "--" query)))
528 (run-hooks 'notmuch-after-tag-hook))
530 (defcustom notmuch-before-tag-hook nil
531 "Hooks that are run before tags of a message are modified.
533 'tags' will contain the tags that are about to be added or removed as
534 a list of strings of the form \"+TAG\" or \"-TAG\".
535 'query' will be a string containing the search query that determines
536 the messages that are about to be tagged"
539 :options '(hl-line-mode)
540 :group 'notmuch-hooks)
542 (defcustom notmuch-after-tag-hook nil
543 "Hooks that are run after tags of a message are modified.
545 'tags' will contain the tags that were added or removed as
546 a list of strings of the form \"+TAG\" or \"-TAG\".
547 'query' will be a string containing the search query that determines
548 the messages that were tagged"
550 :options '(hl-line-mode)
551 :group 'notmuch-hooks)
553 (defun notmuch-search-set-tags (tags)
556 (re-search-backward "(")
559 (inhibit-read-only t))
560 (re-search-forward ")")
563 (delete-region beg end)
564 (insert (propertize (mapconcat 'identity tags " ")
565 'face 'notmuch-tag-face))))))
567 (defun notmuch-search-get-tags ()
570 (re-search-backward "(")
571 (let ((beg (+ (point) 1)))
572 (re-search-forward ")")
573 (let ((end (- (point) 1)))
574 (split-string (buffer-substring-no-properties beg end))))))
576 (defun notmuch-search-get-tags-region (beg end)
579 (last-line (line-number-at-pos end))
580 (max-line (- (line-number-at-pos (point-max)) 2)))
582 (while (<= (line-number-at-pos) (min last-line max-line))
583 (setq output (append output (notmuch-search-get-tags)))
587 (defun notmuch-search-add-tag-thread (tag)
588 (notmuch-search-add-tag-region tag (point) (point)))
590 (defun notmuch-search-add-tag-region (tag beg end)
591 (let ((search-id-string (mapconcat 'identity (notmuch-search-find-thread-id-region beg end) " or ")))
592 (notmuch-tag search-id-string (concat "+" tag))
594 (let ((last-line (line-number-at-pos end))
595 (max-line (- (line-number-at-pos (point-max)) 2)))
597 (while (<= (line-number-at-pos) (min last-line max-line))
598 (notmuch-search-set-tags (delete-dups (sort (cons tag (notmuch-search-get-tags)) 'string<)))
601 (defun notmuch-search-remove-tag-thread (tag)
602 (notmuch-search-remove-tag-region tag (point) (point)))
604 (defun notmuch-search-remove-tag-region (tag beg end)
605 (let ((search-id-string (mapconcat 'identity (notmuch-search-find-thread-id-region beg end) " or ")))
606 (notmuch-tag search-id-string (concat "-" tag))
608 (let ((last-line (line-number-at-pos end))
609 (max-line (- (line-number-at-pos (point-max)) 2)))
611 (while (<= (line-number-at-pos) (min last-line max-line))
612 (notmuch-search-set-tags (delete tag (notmuch-search-get-tags)))
615 (defun notmuch-search-add-tag (tag)
616 "Add a tag to the currently selected thread or region.
618 The tag is added to all messages in the currently selected thread
619 or threads in the current region."
621 (list (notmuch-select-tag-with-completion "Tag to add: ")))
623 (if (region-active-p)
624 (let* ((beg (region-beginning))
626 (notmuch-search-add-tag-region tag beg end))
627 (notmuch-search-add-tag-thread tag))))
629 (defun notmuch-search-remove-tag (tag)
630 "Remove a tag from the currently selected thread or region.
632 The tag is removed from all messages in the currently selected
633 thread or threads in the current region."
635 (list (notmuch-select-tag-with-completion
637 (if (region-active-p)
639 (notmuch-search-find-thread-id-region (region-beginning) (region-end))
641 (notmuch-search-find-thread-id)))))
643 (if (region-active-p)
644 (let* ((beg (region-beginning))
646 (notmuch-search-remove-tag-region tag beg end))
647 (notmuch-search-remove-tag-thread tag))))
649 (defun notmuch-search-archive-thread ()
650 "Archive the currently selected thread (remove its \"inbox\" tag).
652 This function advances the next thread when finished."
654 (notmuch-search-remove-tag-thread "inbox")
655 (notmuch-search-next-thread))
657 (defvar notmuch-search-process-filter-data nil
658 "Data that has not yet been processed.")
659 (make-variable-buffer-local 'notmuch-search-process-filter-data)
661 (defun notmuch-search-process-sentinel (proc msg)
662 "Add a message to let user know when \"notmuch search\" exits"
663 (let ((buffer (process-buffer proc))
664 (status (process-status proc))
665 (exit-status (process-exit-status proc))
666 (never-found-target-thread nil))
667 (if (memq status '(exit signal))
668 (if (buffer-live-p buffer)
669 (with-current-buffer buffer
671 (let ((inhibit-read-only t)
673 (goto-char (point-max))
674 (if (eq status 'signal)
675 (insert "Incomplete search results (search process was killed).\n"))
676 (when (eq status 'exit)
677 (if notmuch-search-process-filter-data
678 (insert (concat "Error: Unexpected output from notmuch search:\n" notmuch-search-process-filter-data)))
679 (insert "End of search results.")
680 (unless (= exit-status 0)
681 (insert (format " (process returned %d)" exit-status)))
684 (not (string= notmuch-search-target-thread "found")))
685 (set 'never-found-target-thread t)))))
686 (when (and never-found-target-thread
687 notmuch-search-target-line)
688 (goto-char (point-min))
689 (forward-line (1- notmuch-search-target-line))))))))
691 (defcustom notmuch-search-line-faces nil
692 "Tag/face mapping for line highlighting in notmuch-search.
694 Here is an example of how to color search results based on tags.
695 (the following text would be placed in your ~/.emacs file):
697 (setq notmuch-search-line-faces '((\"delete\" . (:foreground \"red\"
698 :background \"blue\"))
699 (\"unread\" . (:foreground \"green\"))))
701 The attributes defined for matching tags are merged, with later
702 attributes overriding earlier. A message having both \"delete\"
703 and \"unread\" tags with the above settings would have a green
704 foreground and blue background."
705 :type '(alist :key-type (string) :value-type (custom-face-edit))
706 :group 'notmuch-search
707 :group 'notmuch-faces)
709 (defun notmuch-search-color-line (start end line-tag-list)
710 "Colorize lines in `notmuch-show' based on tags."
711 ;; Create the overlay only if the message has tags which match one
712 ;; of those specified in `notmuch-search-line-faces'.
715 (let ((tag (car elem))
716 (attributes (cdr elem)))
717 (when (member tag line-tag-list)
719 (setq overlay (make-overlay start end)))
720 ;; Merge the specified properties with any already
721 ;; applied from an earlier match.
722 (overlay-put overlay 'face
723 (append (overlay-get overlay 'face) attributes)))))
724 notmuch-search-line-faces)))
726 (defun notmuch-search-author-propertize (authors)
727 "Split `authors' into matching and non-matching authors and
728 propertize appropriately. If no boundary between authors and
729 non-authors is found, assume that all of the authors match."
730 (if (string-match "\\(.*\\)|\\(.*\\)" authors)
731 (concat (propertize (concat (match-string 1 authors) ",")
732 'face 'notmuch-search-matching-authors)
733 (propertize (match-string 2 authors)
734 'face 'notmuch-search-non-matching-authors))
735 (propertize authors 'face 'notmuch-search-matching-authors)))
737 (defun notmuch-search-insert-authors (format-string authors)
738 ;; Save the match data to avoid interfering with
739 ;; `notmuch-search-process-filter'.
741 (let* ((formatted-authors (format format-string authors))
742 (formatted-sample (format format-string ""))
743 (visible-string formatted-authors)
744 (invisible-string "")
747 ;; Truncate the author string to fit the specification.
748 (if (> (length formatted-authors)
749 (length formatted-sample))
750 (let ((visible-length (- (length formatted-sample)
752 ;; Truncate the visible string according to the width of
753 ;; the display string.
754 (setq visible-string (substring formatted-authors 0 visible-length)
755 invisible-string (substring formatted-authors visible-length))
756 ;; If possible, truncate the visible string at a natural
757 ;; break (comma or pipe), as incremental search doesn't
758 ;; match across the visible/invisible border.
759 (when (string-match "\\(.*\\)\\([,|] \\)\\([^,|]*\\)" visible-string)
760 ;; Second clause is destructive on `visible-string', so
761 ;; order is important.
762 (setq invisible-string (concat (match-string 3 visible-string)
764 visible-string (concat (match-string 1 visible-string)
765 (match-string 2 visible-string))))
766 ;; `visible-string' may be shorter than the space allowed
767 ;; by `format-string'. If so we must insert some padding
768 ;; after `invisible-string'.
769 (setq padding (make-string (- (length formatted-sample)
770 (length visible-string)
774 ;; Use different faces to show matching and non-matching authors.
775 (if (string-match "\\(.*\\)|\\(.*\\)" visible-string)
776 ;; The visible string contains both matching and
777 ;; non-matching authors.
778 (setq visible-string (notmuch-search-author-propertize visible-string)
779 ;; The invisible string must contain only non-matching
780 ;; authors, as the visible-string contains both.
781 invisible-string (propertize invisible-string
782 'face 'notmuch-search-non-matching-authors))
783 ;; The visible string contains only matching authors.
784 (setq visible-string (propertize visible-string
785 'face 'notmuch-search-matching-authors)
786 ;; The invisible string may contain both matching and
787 ;; non-matching authors.
788 invisible-string (notmuch-search-author-propertize invisible-string)))
790 ;; If there is any invisible text, add it as a tooltip to the
792 (when (not (string= invisible-string ""))
793 (setq visible-string (propertize visible-string 'help-echo (concat "..." invisible-string))))
795 ;; Insert the visible and, if present, invisible author strings.
796 (insert visible-string)
797 (when (not (string= invisible-string ""))
798 (let ((start (point))
800 (insert invisible-string)
801 (setq overlay (make-overlay start (point)))
802 (overlay-put overlay 'invisible 'ellipsis)
803 (overlay-put overlay 'isearch-open-invisible #'delete-overlay)))
806 (defun notmuch-search-insert-field (field date count authors subject tags)
808 ((string-equal field "date")
809 (insert (propertize (format (cdr (assoc field notmuch-search-result-format)) date)
810 'face 'notmuch-search-date)))
811 ((string-equal field "count")
812 (insert (propertize (format (cdr (assoc field notmuch-search-result-format)) count)
813 'face 'notmuch-search-count)))
814 ((string-equal field "subject")
815 (insert (propertize (format (cdr (assoc field notmuch-search-result-format)) subject)
816 'face 'notmuch-search-subject)))
818 ((string-equal field "authors")
819 (notmuch-search-insert-authors (cdr (assoc field notmuch-search-result-format)) authors))
821 ((string-equal field "tags")
822 (insert (concat "(" (propertize tags 'font-lock-face 'notmuch-tag-face) ")")))))
824 (defun notmuch-search-show-result (date count authors subject tags)
825 (let ((fields) (field))
826 (setq fields (mapcar 'car notmuch-search-result-format))
827 (loop for field in fields
828 do (notmuch-search-insert-field field date count authors subject tags)))
831 (defun notmuch-search-process-filter (proc string)
832 "Process and filter the output of \"notmuch search\""
833 (let ((buffer (process-buffer proc))
835 (if (buffer-live-p buffer)
836 (with-current-buffer buffer
840 (inhibit-read-only t)
841 (string (concat notmuch-search-process-filter-data string)))
842 (setq notmuch-search-process-filter-data nil)
844 (while (and (< line (length string)) (= (elt string line) ?\n))
845 (setq line (1+ line)))
846 (if (string-match "^\\(thread:[0-9A-Fa-f]*\\) \\([^][]*\\) \\(\\[[0-9/]*\\]\\) \\([^;]*\\); \\(.*\\) (\\([^()]*\\))$" string line)
847 (let* ((thread-id (match-string 1 string))
848 (date (match-string 2 string))
849 (count (match-string 3 string))
850 (authors (match-string 4 string))
851 (subject (match-string 5 string))
852 (tags (match-string 6 string))
853 (tag-list (if tags (save-match-data (split-string tags)))))
854 (goto-char (point-max))
855 (if (/= (match-beginning 1) line)
856 (insert (concat "Error: Unexpected output from notmuch search:\n" (substring string line (match-beginning 1)) "\n")))
858 (notmuch-search-show-result date count authors
859 (notmuch-prettify-subject subject) tags)
860 (notmuch-search-color-line beg (point) tag-list)
861 (put-text-property beg (point) 'notmuch-search-thread-id thread-id)
862 (put-text-property beg (point) 'notmuch-search-authors authors)
863 (put-text-property beg (point) 'notmuch-search-subject subject)
864 (when (string= thread-id notmuch-search-target-thread)
865 (set 'found-target beg)
866 (set 'notmuch-search-target-thread "found")))
867 (set 'line (match-end 0)))
869 (while (and (< line (length string)) (= (elt string line) ?\n))
870 (setq line (1+ line)))
871 (if (< line (length string))
872 (setq notmuch-search-process-filter-data (substring string line)))
875 (goto-char found-target)))
876 (delete-process proc))))
878 (defun notmuch-search-operate-all (&rest actions)
879 "Add/remove tags from all matching messages.
881 This command adds or removes tags from all messages matching the
882 current search terms. When called interactively, this command
883 will prompt for tags to be added or removed. Tags prefixed with
884 '+' will be added and tags prefixed with '-' will be removed.
886 Each character of the tag name may consist of alphanumeric
887 characters as well as `_.+-'.
889 (interactive (notmuch-select-tags-with-completion
890 "Operations (+add -drop): notmuch tag "
892 (apply 'notmuch-tag notmuch-search-query-string actions))
894 (defun notmuch-search-buffer-title (query)
895 "Returns the title for a buffer with notmuch search results."
899 (loop for tuple in notmuch-saved-searches
900 if (let ((quoted-query (regexp-quote (cdr tuple))))
901 (and (string-match (concat "^" quoted-query) query)
902 (> (length (match-string 0 query))
904 do (setq longest tuple))
906 (saved-search-name (car saved-search))
907 (saved-search-query (cdr saved-search)))
908 (cond ((and saved-search (equal saved-search-query query))
909 ;; Query is the same as saved search (ignoring case)
910 (concat "*notmuch-saved-search-" saved-search-name "*"))
912 (concat "*notmuch-search-"
913 (replace-regexp-in-string (concat "^" (regexp-quote saved-search-query))
914 (concat "[ " saved-search-name " ]")
918 (concat "*notmuch-search-" query "*"))
921 (defun notmuch-read-query (prompt)
922 "Read a notmuch-query from the minibuffer with completion.
924 PROMPT is the string to prompt with."
927 (append (list "folder:" "thread:" "id:" "date:" "from:" "to:"
928 "subject:" "attachment:")
929 (mapcar (lambda (tag)
931 (process-lines notmuch-command "search" "--output=tags" "*")))))
932 (let ((keymap (copy-keymap minibuffer-local-map))
933 (minibuffer-completion-table
934 (completion-table-dynamic
936 ;; generate a list of possible completions for the current input
938 ;; this ugly regexp is used to get the last word of the input
939 ;; possibly preceded by a '('
940 ((string-match "\\(^\\|.* (?\\)\\([^ ]*\\)$" string)
941 (mapcar (lambda (compl)
942 (concat (match-string-no-properties 1 string) compl))
943 (all-completions (match-string-no-properties 2 string)
945 (t (list string)))))))
946 ;; this was simpler than convincing completing-read to accept spaces:
947 (define-key keymap (kbd "<tab>") 'minibuffer-complete)
948 (let ((history-delete-duplicates t))
949 (read-from-minibuffer prompt nil keymap nil
950 'notmuch-search-history nil nil)))))
953 (defun notmuch-search (&optional query oldest-first target-thread target-line continuation)
954 "Run \"notmuch search\" with the given `query' and display results.
956 If `query' is nil, it is read interactively from the minibuffer.
957 Other optional parameters are used as follows:
959 oldest-first: A Boolean controlling the sort order of returned threads
960 target-thread: A thread ID (with the thread: prefix) that will be made
961 current if it appears in the search results.
962 target-line: The line number to move to if the target thread does not
963 appear in the search results."
966 (setq query (notmuch-read-query "Notmuch search: ")))
967 (let ((buffer (get-buffer-create (notmuch-search-buffer-title query))))
968 (switch-to-buffer buffer)
969 (notmuch-search-mode)
970 ;; Don't track undo information for this buffer
971 (set 'buffer-undo-list t)
972 (set 'notmuch-search-query-string query)
973 (set 'notmuch-search-oldest-first oldest-first)
974 (set 'notmuch-search-target-thread target-thread)
975 (set 'notmuch-search-target-line target-line)
976 (set 'notmuch-search-continuation continuation)
977 (let ((proc (get-buffer-process (current-buffer)))
978 (inhibit-read-only t))
980 (error "notmuch search process already running for query `%s'" query)
983 (goto-char (point-min))
985 (let ((proc (start-process
986 "notmuch-search" buffer
987 notmuch-command "search"
989 "--sort=oldest-first"
990 "--sort=newest-first")
992 (set-process-sentinel proc 'notmuch-search-process-sentinel)
993 (set-process-filter proc 'notmuch-search-process-filter)
994 (set-process-query-on-exit-flag proc nil))))
995 (run-hooks 'notmuch-search-hook)))
997 (defun notmuch-search-refresh-view ()
998 "Refresh the current view.
1000 Kills the current buffer and runs a new search with the same
1001 query string as the current search. If the current thread is in
1002 the new search results, then point will be placed on the same
1003 thread. Otherwise, point will be moved to attempt to be in the
1004 same relative position within the new buffer."
1006 (let ((target-line (line-number-at-pos))
1007 (oldest-first notmuch-search-oldest-first)
1008 (target-thread (notmuch-search-find-thread-id))
1009 (query notmuch-search-query-string)
1010 (continuation notmuch-search-continuation))
1011 (notmuch-kill-this-buffer)
1012 (notmuch-search query oldest-first target-thread target-line continuation)
1013 (goto-char (point-min))))
1015 (defcustom notmuch-poll-script nil
1016 "An external script to incorporate new mail into the notmuch database.
1018 This variable controls the action invoked by
1019 `notmuch-search-poll-and-refresh-view' and
1020 `notmuch-hello-poll-and-update' (each have a default keybinding
1021 of 'G') to incorporate new mail into the notmuch database.
1023 If set to nil (the default), new mail is processed by invoking
1024 \"notmuch new\". Otherwise, this should be set to a string that
1025 gives the name of an external script that processes new mail. If
1026 set to the empty string, no command will be run.
1028 The external script could do any of the following depending on
1031 1. Invoke a program to transfer mail to the local mail store
1032 2. Invoke \"notmuch new\" to incorporate the new mail
1033 3. Invoke one or more \"notmuch tag\" commands to classify the mail
1035 Note that the recommended way of achieving the same is using
1036 \"notmuch new\" hooks."
1037 :type '(choice (const :tag "notmuch new" nil)
1038 (const :tag "Disabled" "")
1039 (string :tag "Custom script"))
1040 :group 'notmuch-external)
1042 (defun notmuch-poll ()
1043 "Run \"notmuch new\" or an external script to import mail.
1045 Invokes `notmuch-poll-script', \"notmuch new\", or does nothing
1046 depending on the value of `notmuch-poll-script'."
1048 (if (stringp notmuch-poll-script)
1049 (unless (string= notmuch-poll-script "")
1050 (call-process notmuch-poll-script nil nil))
1051 (call-process notmuch-command nil nil nil "new")))
1053 (defun notmuch-search-poll-and-refresh-view ()
1054 "Invoke `notmuch-poll' to import mail, then refresh the current view."
1057 (notmuch-search-refresh-view))
1059 (defun notmuch-search-toggle-order ()
1060 "Toggle the current search order.
1062 By default, the \"inbox\" view created by `notmuch' is displayed
1063 in chronological order (oldest thread at the beginning of the
1064 buffer), while any global searches created by `notmuch-search'
1065 are displayed in reverse-chronological order (newest thread at
1066 the beginning of the buffer).
1068 This command toggles the sort order for the current search.
1070 Note that any filtered searches created by
1071 `notmuch-search-filter' retain the search order of the parent
1074 (set 'notmuch-search-oldest-first (not notmuch-search-oldest-first))
1075 (notmuch-search-refresh-view))
1077 (defun notmuch-search-filter (query)
1078 "Filter the current search results based on an additional query string.
1080 Runs a new search matching only messages that match both the
1081 current search results AND the additional query string provided."
1082 (interactive (list (notmuch-read-query "Filter search: ")))
1083 (let ((grouped-query (if (string-match-p notmuch-search-disjunctive-regexp query)
1084 (concat "( " query " )")
1086 (notmuch-search (if (string= notmuch-search-query-string "*")
1088 (concat notmuch-search-query-string " and " grouped-query)) notmuch-search-oldest-first)))
1090 (defun notmuch-search-filter-by-tag (tag)
1091 "Filter the current search results based on a single tag.
1093 Runs a new search matching only messages that match both the
1094 current search results AND that are tagged with the given tag."
1096 (list (notmuch-select-tag-with-completion "Filter by tag: ")))
1097 (notmuch-search (concat notmuch-search-query-string " and tag:" tag) notmuch-search-oldest-first))
1101 "Run notmuch and display saved searches, known tags, etc."
1105 (defun notmuch-interesting-buffer (b)
1106 "Is the current buffer of interest to a notmuch user?"
1107 (with-current-buffer b
1108 (memq major-mode '(notmuch-show-mode
1114 (defun notmuch-cycle-notmuch-buffers ()
1115 "Cycle through any existing notmuch buffers (search, show or hello).
1117 If the current buffer is the only notmuch buffer, bury it. If no
1118 notmuch buffers exist, run `notmuch'."
1122 ;; If the current buffer is a notmuch buffer, remember it and then
1124 (when (notmuch-interesting-buffer (current-buffer))
1125 (setq start (current-buffer))
1128 ;; Find the first notmuch buffer.
1129 (setq first (loop for buffer in (buffer-list)
1130 if (notmuch-interesting-buffer buffer)
1134 ;; If the first one we found is any other than the starting
1135 ;; buffer, switch to it.
1136 (unless (eq first start)
1137 (switch-to-buffer first))
1140 (setq mail-user-agent 'notmuch-user-agent)