2009-10-30 23:17:27 +01:00
|
|
|
; notmuch.el --- run notmuch within emacs
|
|
|
|
;
|
|
|
|
; Copyright © Carl Worth
|
|
|
|
;
|
|
|
|
; This file is part of Notmuch.
|
|
|
|
;
|
|
|
|
; Notmuch is free software: you can redistribute it and/or modify it
|
|
|
|
; under the terms of the GNU General Public License as published by
|
|
|
|
; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
; (at your option) any later version.
|
|
|
|
;
|
|
|
|
; Notmuch is distributed in the hope that it will be useful, but
|
|
|
|
; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
; General Public License for more details.
|
|
|
|
;
|
|
|
|
; You should have received a copy of the GNU General Public License
|
|
|
|
; along with Notmuch. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
;
|
|
|
|
; Authors: Carl Worth <cworth@cworth.org>
|
|
|
|
|
2009-11-21 21:40:57 +01:00
|
|
|
; This is an emacs-based interface to the notmuch mail system.
|
|
|
|
;
|
|
|
|
; You will first need to have the notmuch program installed and have a
|
|
|
|
; notmuch database built in order to use this. See
|
|
|
|
; http://notmuchmail.org for details.
|
|
|
|
;
|
|
|
|
; To install this software, copy it to a directory that is on the
|
|
|
|
; `load-path' variable within emacs (a good candidate is
|
|
|
|
; /usr/local/share/emacs/site-lisp). If you are viewing this from the
|
|
|
|
; notmuch source distribution then you can simply run:
|
|
|
|
;
|
|
|
|
; sudo make install-emacs
|
|
|
|
;
|
|
|
|
; to install it.
|
|
|
|
;
|
|
|
|
; Then, to actually run it, add:
|
|
|
|
;
|
|
|
|
; (require 'notmuch)
|
|
|
|
;
|
|
|
|
; to your ~/.emacs file, and then run "M-x notmuch" from within emacs,
|
|
|
|
; or run:
|
|
|
|
;
|
|
|
|
; emacs -f notmuch
|
|
|
|
;
|
|
|
|
; Have fun, and let us know if you have any comment, questions, or
|
|
|
|
; kudos: Notmuch list <notmuch@notmuchmail.org> (subscription is not
|
|
|
|
; required, but is available from http://notmuchmail.org).
|
|
|
|
|
2009-11-14 00:49:43 +01:00
|
|
|
(require 'cl)
|
2009-11-14 17:57:38 +01:00
|
|
|
(require 'mm-view)
|
2009-11-25 23:14:20 +01:00
|
|
|
(require 'message)
|
2009-11-05 20:15:56 +01:00
|
|
|
|
2010-04-01 19:36:21 +02:00
|
|
|
(require 'notmuch-lib)
|
|
|
|
(require 'notmuch-show)
|
2009-11-04 22:16:33 +01:00
|
|
|
|
2010-04-12 09:51:30 +02:00
|
|
|
(defcustom notmuch-search-authors-width 20
|
|
|
|
"Number of columns to use to display authors in a notmuch-search buffer."
|
2010-04-21 23:16:20 +02:00
|
|
|
:type 'integer
|
|
|
|
:group 'notmuch)
|
2010-04-12 09:51:30 +02:00
|
|
|
|
|
|
|
(defcustom notmuch-search-result-format
|
|
|
|
`(("date" . "%s ")
|
|
|
|
("count" . "%-7s ")
|
|
|
|
("authors" . ,(format "%%-%ds " notmuch-search-authors-width))
|
|
|
|
("subject" . "%s ")
|
|
|
|
("tags" . "(%s)"))
|
|
|
|
"Search result formating. Supported fields are:
|
|
|
|
date, count, authors, subject, tags
|
|
|
|
For example:
|
|
|
|
(setq notmuch-search-result-format \(\(\"authors\" . \"%-40s\"\)
|
|
|
|
\(\"subject\" . \"%s\"\)\)\)"
|
|
|
|
:type '(alist :key-type (string) :value-type (string))
|
|
|
|
:group 'notmuch)
|
|
|
|
|
2009-11-25 05:05:39 +01:00
|
|
|
(defun notmuch-select-tag-with-completion (prompt &rest search-terms)
|
2009-11-23 01:10:56 +01:00
|
|
|
(let ((tag-list
|
|
|
|
(with-output-to-string
|
|
|
|
(with-current-buffer standard-output
|
2009-11-25 05:05:39 +01:00
|
|
|
(apply 'call-process notmuch-command nil t nil "search-tags" search-terms)))))
|
2009-11-23 01:10:56 +01:00
|
|
|
(completing-read prompt (split-string tag-list "\n+" t) nil nil nil)))
|
|
|
|
|
2009-11-27 14:30:14 +01:00
|
|
|
(defun notmuch-foreach-mime-part (function mm-handle)
|
|
|
|
(cond ((stringp (car mm-handle))
|
|
|
|
(dolist (part (cdr mm-handle))
|
|
|
|
(notmuch-foreach-mime-part function part)))
|
|
|
|
((bufferp (car mm-handle))
|
|
|
|
(funcall function mm-handle))
|
|
|
|
(t (dolist (part mm-handle)
|
|
|
|
(notmuch-foreach-mime-part function part)))))
|
|
|
|
|
|
|
|
(defun notmuch-count-attachments (mm-handle)
|
|
|
|
(let ((count 0))
|
|
|
|
(notmuch-foreach-mime-part
|
|
|
|
(lambda (p)
|
|
|
|
(let ((disposition (mm-handle-disposition p)))
|
|
|
|
(and (listp disposition)
|
2009-12-05 23:53:59 +01:00
|
|
|
(or (equal (car disposition) "attachment")
|
|
|
|
(and (equal (car disposition) "inline")
|
|
|
|
(assq 'filename disposition)))
|
2009-11-27 14:30:14 +01:00
|
|
|
(incf count))))
|
|
|
|
mm-handle)
|
|
|
|
count))
|
|
|
|
|
|
|
|
(defun notmuch-save-attachments (mm-handle &optional queryp)
|
|
|
|
(notmuch-foreach-mime-part
|
|
|
|
(lambda (p)
|
|
|
|
(let ((disposition (mm-handle-disposition p)))
|
|
|
|
(and (listp disposition)
|
2009-12-05 23:53:59 +01:00
|
|
|
(or (equal (car disposition) "attachment")
|
|
|
|
(and (equal (car disposition) "inline")
|
|
|
|
(assq 'filename disposition)))
|
2009-11-27 14:30:14 +01:00
|
|
|
(or (not queryp)
|
|
|
|
(y-or-n-p
|
|
|
|
(concat "Save '" (cdr (assq 'filename disposition)) "' ")))
|
|
|
|
(mm-save-part p))))
|
|
|
|
mm-handle))
|
|
|
|
|
2009-11-19 00:21:24 +01:00
|
|
|
(defun notmuch-reply (query-string)
|
|
|
|
(switch-to-buffer (generate-new-buffer "notmuch-draft"))
|
2009-11-20 02:15:40 +01:00
|
|
|
(call-process notmuch-command nil t nil "reply" query-string)
|
2009-11-21 05:57:35 +01:00
|
|
|
(message-insert-signature)
|
2009-11-19 00:21:24 +01:00
|
|
|
(goto-char (point-min))
|
|
|
|
(if (re-search-forward "^$" nil t)
|
|
|
|
(progn
|
|
|
|
(insert "--text follows this line--")
|
|
|
|
(forward-line)))
|
|
|
|
(message-mode))
|
|
|
|
|
2009-11-30 18:53:38 +01:00
|
|
|
(defun notmuch-documentation-first-line (symbol)
|
|
|
|
"Return the first line of the documentation string for SYMBOL."
|
|
|
|
(let ((doc (documentation symbol)))
|
|
|
|
(if doc
|
|
|
|
(with-temp-buffer
|
2009-12-01 07:24:05 +01:00
|
|
|
(insert (documentation symbol t))
|
2009-11-30 18:53:38 +01:00
|
|
|
(goto-char (point-min))
|
|
|
|
(let ((beg (point)))
|
|
|
|
(end-of-line)
|
|
|
|
(buffer-substring beg (point))))
|
|
|
|
"")))
|
|
|
|
|
2009-12-01 06:46:55 +01:00
|
|
|
(defun notmuch-prefix-key-description (key)
|
|
|
|
"Given a prefix key code, return a human-readable string representation.
|
|
|
|
|
|
|
|
This is basically just `format-kbd-macro' but we also convert ESC to M-."
|
|
|
|
(let ((desc (format-kbd-macro (vector key))))
|
|
|
|
(if (string= desc "ESC")
|
|
|
|
"M-"
|
|
|
|
(concat desc " "))))
|
|
|
|
|
|
|
|
; I would think that emacs would have code handy for walking a keymap
|
|
|
|
; and generating strings for each key, and I would prefer to just call
|
|
|
|
; that. But I couldn't find any (could be all implemented in C I
|
|
|
|
; suppose), so I wrote my own here.
|
|
|
|
(defun notmuch-substitute-one-command-key-with-prefix (prefix binding)
|
|
|
|
"For a key binding, return a string showing a human-readable
|
|
|
|
representation of the prefixed key as well as the first line of
|
|
|
|
documentation from the bound function.
|
2009-12-01 01:44:05 +01:00
|
|
|
|
|
|
|
For a mouse binding, return nil."
|
2009-12-01 06:46:55 +01:00
|
|
|
(let ((key (car binding))
|
|
|
|
(action (cdr binding)))
|
2009-12-01 01:44:05 +01:00
|
|
|
(if (mouse-event-p key)
|
|
|
|
nil
|
2009-12-01 06:46:55 +01:00
|
|
|
(if (keymapp action)
|
2010-02-12 04:01:07 +01:00
|
|
|
(let ((substitute (apply-partially 'notmuch-substitute-one-command-key-with-prefix (notmuch-prefix-key-description key)))
|
|
|
|
(as-list))
|
|
|
|
(map-keymap (lambda (a b)
|
|
|
|
(push (cons a b) as-list))
|
|
|
|
action)
|
|
|
|
(mapconcat substitute as-list "\n"))
|
2009-12-01 06:46:55 +01:00
|
|
|
(concat prefix (format-kbd-macro (vector key))
|
|
|
|
"\t"
|
|
|
|
(notmuch-documentation-first-line action))))))
|
|
|
|
|
|
|
|
(defalias 'notmuch-substitute-one-command-key
|
|
|
|
(apply-partially 'notmuch-substitute-one-command-key-with-prefix nil))
|
2009-11-30 18:53:38 +01:00
|
|
|
|
|
|
|
(defun notmuch-substitute-command-keys (doc)
|
|
|
|
"Like `substitute-command-keys' but with documentation, not function names."
|
|
|
|
(let ((beg 0))
|
|
|
|
(while (string-match "\\\\{\\([^}[:space:]]*\\)}" doc beg)
|
|
|
|
(let ((map (substring doc (match-beginning 1) (match-end 1))))
|
|
|
|
(setq doc (replace-match (mapconcat 'notmuch-substitute-one-command-key
|
|
|
|
(cdr (symbol-value (intern map))) "\n") 1 1 doc)))
|
|
|
|
(setq beg (match-end 0)))
|
|
|
|
doc))
|
|
|
|
|
|
|
|
(defun notmuch-help ()
|
|
|
|
"Display help for the current notmuch mode."
|
|
|
|
(interactive)
|
2009-12-01 08:02:10 +01:00
|
|
|
(let* ((mode major-mode)
|
|
|
|
(doc (substitute-command-keys (notmuch-substitute-command-keys (documentation mode t)))))
|
|
|
|
(with-current-buffer (generate-new-buffer "*notmuch-help*")
|
|
|
|
(insert doc)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
(view-buffer (current-buffer) 'kill-buffer-if-not-modified))))
|
2009-11-30 18:53:38 +01:00
|
|
|
|
2009-11-17 07:06:49 +01:00
|
|
|
(defgroup notmuch nil
|
|
|
|
"Notmuch mail reader for Emacs."
|
|
|
|
:group 'mail)
|
|
|
|
|
2010-03-24 16:50:11 +01:00
|
|
|
(defcustom notmuch-search-hook '(hl-line-mode)
|
2009-11-19 07:10:54 +01:00
|
|
|
"List of functions to call when notmuch displays the search results."
|
|
|
|
:type 'hook
|
|
|
|
:options '(hl-line-mode)
|
|
|
|
:group 'notmuch)
|
|
|
|
|
2009-10-31 09:04:01 +01:00
|
|
|
(defvar notmuch-search-mode-map
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2009-12-01 01:02:27 +01:00
|
|
|
(define-key map "?" 'notmuch-help)
|
|
|
|
(define-key map "q" 'kill-this-buffer)
|
|
|
|
(define-key map "x" 'kill-this-buffer)
|
|
|
|
(define-key map (kbd "<DEL>") 'notmuch-search-scroll-down)
|
2009-11-04 23:38:49 +01:00
|
|
|
(define-key map "b" 'notmuch-search-scroll-down)
|
2009-12-01 01:02:27 +01:00
|
|
|
(define-key map " " 'notmuch-search-scroll-up)
|
2009-12-01 01:52:31 +01:00
|
|
|
(define-key map "<" 'notmuch-search-first-thread)
|
|
|
|
(define-key map ">" 'notmuch-search-last-thread)
|
|
|
|
(define-key map "p" 'notmuch-search-previous-thread)
|
|
|
|
(define-key map "n" 'notmuch-search-next-thread)
|
2009-11-19 00:21:24 +01:00
|
|
|
(define-key map "r" 'notmuch-search-reply-to-thread)
|
2009-12-01 01:02:27 +01:00
|
|
|
(define-key map "m" 'message-mail)
|
2009-11-03 02:56:18 +01:00
|
|
|
(define-key map "s" 'notmuch-search)
|
2009-12-01 01:02:27 +01:00
|
|
|
(define-key map "o" 'notmuch-search-toggle-order)
|
|
|
|
(define-key map "=" 'notmuch-search-refresh-view)
|
2010-04-22 23:24:37 +02:00
|
|
|
(define-key map "G" 'notmuch-search-poll-and-refresh-view)
|
2009-11-04 02:01:07 +01:00
|
|
|
(define-key map "t" 'notmuch-search-filter-by-tag)
|
2009-12-01 01:02:27 +01:00
|
|
|
(define-key map "f" 'notmuch-search-filter)
|
2009-12-01 01:44:05 +01:00
|
|
|
(define-key map [mouse-1] 'notmuch-search-show-thread)
|
2009-11-26 22:36:49 +01:00
|
|
|
(define-key map "*" 'notmuch-search-operate-all)
|
2009-12-01 01:02:27 +01:00
|
|
|
(define-key map "a" 'notmuch-search-archive-thread)
|
|
|
|
(define-key map "-" 'notmuch-search-remove-tag)
|
|
|
|
(define-key map "+" 'notmuch-search-add-tag)
|
|
|
|
(define-key map (kbd "RET") 'notmuch-search-show-thread)
|
2009-10-31 09:04:01 +01:00
|
|
|
map)
|
|
|
|
"Keymap for \"notmuch search\" buffers.")
|
|
|
|
(fset 'notmuch-search-mode-map notmuch-search-mode-map)
|
|
|
|
|
2009-11-21 00:52:23 +01:00
|
|
|
(defvar notmuch-search-query-string)
|
2010-03-09 20:36:08 +01:00
|
|
|
(defvar notmuch-search-target-thread)
|
2010-03-10 20:05:33 +01:00
|
|
|
(defvar notmuch-search-target-line)
|
2009-11-23 15:50:59 +01:00
|
|
|
(defvar notmuch-search-oldest-first t
|
|
|
|
"Show the oldest mail first in the search-mode")
|
2009-11-21 00:52:23 +01:00
|
|
|
|
2009-12-02 12:00:35 +01:00
|
|
|
(defvar notmuch-search-disjunctive-regexp "\\<[oO][rR]\\>")
|
|
|
|
|
2009-11-04 23:38:49 +01:00
|
|
|
(defun notmuch-search-scroll-up ()
|
2009-12-01 01:52:31 +01:00
|
|
|
"Move forward through search results by one window's worth."
|
2009-11-04 23:38:49 +01:00
|
|
|
(interactive)
|
|
|
|
(condition-case nil
|
|
|
|
(scroll-up nil)
|
2009-12-01 01:52:31 +01:00
|
|
|
((end-of-buffer) (notmuch-search-last-thread))))
|
2009-11-04 23:38:49 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-scroll-down ()
|
2009-12-01 01:52:31 +01:00
|
|
|
"Move backward through the search results by one window's worth."
|
2009-11-04 23:38:49 +01:00
|
|
|
(interactive)
|
|
|
|
; I don't know why scroll-down doesn't signal beginning-of-buffer
|
|
|
|
; the way that scroll-up signals end-of-buffer, but c'est la vie.
|
|
|
|
;
|
|
|
|
; So instead of trapping a signal we instead check whether the
|
|
|
|
; window begins on the first line of the buffer and if so, move
|
|
|
|
; directly to that position. (We have to count lines since the
|
|
|
|
; window-start position is not the same as point-min due to the
|
|
|
|
; invisible thread-ID characters on the first line.
|
2009-12-01 01:48:19 +01:00
|
|
|
(if (equal (count-lines (point-min) (window-start)) 0)
|
|
|
|
(goto-char (point-min))
|
2009-11-04 23:38:49 +01:00
|
|
|
(scroll-down nil)))
|
|
|
|
|
2009-12-01 01:52:31 +01:00
|
|
|
(defun notmuch-search-next-thread ()
|
|
|
|
"Select the next thread in the search results."
|
|
|
|
(interactive)
|
2009-12-01 08:05:32 +01:00
|
|
|
(forward-line 1))
|
2009-12-01 01:52:31 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-previous-thread ()
|
|
|
|
"Select the previous thread in the search results."
|
|
|
|
(interactive)
|
2009-12-01 08:05:32 +01:00
|
|
|
(forward-line -1))
|
2009-12-01 01:52:31 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-last-thread ()
|
|
|
|
"Select the last thread in the search results."
|
2009-11-21 00:58:16 +01:00
|
|
|
(interactive)
|
|
|
|
(goto-char (point-max))
|
2009-12-01 01:50:52 +01:00
|
|
|
(forward-line -2))
|
2009-11-03 03:23:06 +01:00
|
|
|
|
2009-12-01 01:52:31 +01:00
|
|
|
(defun notmuch-search-first-thread ()
|
|
|
|
"Select the first thread in the search results."
|
|
|
|
(interactive)
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
2009-12-03 18:52:43 +01:00
|
|
|
(defface notmuch-message-summary-face
|
|
|
|
'((((class color) (background light)) (:background "#f0f0f0"))
|
|
|
|
(((class color) (background dark)) (:background "#303030")))
|
|
|
|
"Face for the single-line message summary in notmuch-show-mode."
|
|
|
|
:group 'notmuch)
|
|
|
|
|
2009-11-28 07:07:05 +01:00
|
|
|
(defface notmuch-tag-face
|
|
|
|
'((((class color)
|
|
|
|
(background dark))
|
|
|
|
(:foreground "OliveDrab1"))
|
|
|
|
(((class color)
|
|
|
|
(background light))
|
|
|
|
(:foreground "navy blue" :bold t))
|
|
|
|
(t
|
|
|
|
(:bold t)))
|
|
|
|
"Notmuch search mode face used to highligh tags."
|
|
|
|
:group 'notmuch)
|
|
|
|
|
2009-10-30 23:17:27 +01:00
|
|
|
;;;###autoload
|
|
|
|
(defun notmuch-search-mode ()
|
2009-12-01 01:02:27 +01:00
|
|
|
"Major mode displaying results of a notmuch search.
|
2009-11-04 03:24:13 +01:00
|
|
|
|
|
|
|
This buffer contains the results of a \"notmuch search\" of your
|
|
|
|
email archives. Each line in the buffer represents a single
|
2009-12-01 01:02:27 +01:00
|
|
|
thread giving a summary of the thread (a relative date, the
|
|
|
|
number of matched messages and total messages in the thread,
|
|
|
|
participants in the thread, a representative subject line, and
|
|
|
|
any tags).
|
|
|
|
|
2009-12-01 07:47:10 +01:00
|
|
|
Pressing \\[notmuch-search-show-thread] on any line displays that thread. The '\\[notmuch-search-add-tag]' and '\\[notmuch-search-remove-tag]'
|
|
|
|
keys can be used to add or remove tags from a thread. The '\\[notmuch-search-archive-thread]' key
|
|
|
|
is a convenience for archiving a thread (removing the \"inbox\"
|
|
|
|
tag). The '\\[notmuch-search-operate-all]' key can be used to add or remove a tag from all
|
|
|
|
threads in the current buffer.
|
|
|
|
|
|
|
|
Other useful commands are '\\[notmuch-search-filter]' for filtering the current search
|
|
|
|
based on an additional query string, '\\[notmuch-search-filter-by-tag]' for filtering to include
|
|
|
|
only messages with a given tag, and '\\[notmuch-search]' to execute a new, global
|
2009-12-01 01:02:27 +01:00
|
|
|
search.
|
|
|
|
|
|
|
|
Complete list of currently available key bindings:
|
2009-11-04 03:24:13 +01:00
|
|
|
|
|
|
|
\\{notmuch-search-mode-map}"
|
2009-10-30 23:17:27 +01:00
|
|
|
(interactive)
|
|
|
|
(kill-all-local-variables)
|
2009-11-03 02:56:18 +01:00
|
|
|
(make-local-variable 'notmuch-search-query-string)
|
2009-11-13 07:58:51 +01:00
|
|
|
(make-local-variable 'notmuch-search-oldest-first)
|
2010-03-09 20:36:08 +01:00
|
|
|
(make-local-variable 'notmuch-search-target-thread)
|
2010-03-10 20:05:33 +01:00
|
|
|
(make-local-variable 'notmuch-search-target-line)
|
2009-11-04 01:55:20 +01:00
|
|
|
(set (make-local-variable 'scroll-preserve-screen-position) t)
|
2009-11-04 01:46:27 +01:00
|
|
|
(add-to-invisibility-spec 'notmuch-search)
|
2009-10-31 09:04:01 +01:00
|
|
|
(use-local-map notmuch-search-mode-map)
|
2009-11-18 09:12:31 +01:00
|
|
|
(setq truncate-lines t)
|
2009-10-30 23:17:27 +01:00
|
|
|
(setq major-mode 'notmuch-search-mode
|
|
|
|
mode-name "notmuch-search")
|
2010-04-12 09:51:30 +02:00
|
|
|
(setq buffer-read-only t))
|
2009-10-30 23:17:27 +01:00
|
|
|
|
2010-02-17 01:07:40 +01:00
|
|
|
(defun notmuch-search-properties-in-region (property beg end)
|
|
|
|
(save-excursion
|
|
|
|
(let ((output nil)
|
2010-04-13 20:47:19 +02:00
|
|
|
(last-line (line-number-at-pos end))
|
|
|
|
(max-line (- (line-number-at-pos (point-max)) 2)))
|
2010-02-17 01:07:40 +01:00
|
|
|
(goto-char beg)
|
|
|
|
(beginning-of-line)
|
2010-04-13 20:47:19 +02:00
|
|
|
(while (<= (line-number-at-pos) (min last-line max-line))
|
2010-02-17 01:07:40 +01:00
|
|
|
(setq output (cons (get-text-property (point) property) output))
|
|
|
|
(forward-line 1))
|
|
|
|
output)))
|
|
|
|
|
2009-10-31 09:41:44 +01:00
|
|
|
(defun notmuch-search-find-thread-id ()
|
2009-11-25 03:49:58 +01:00
|
|
|
"Return the thread for the current thread"
|
|
|
|
(get-text-property (point) 'notmuch-search-thread-id))
|
2009-10-31 09:41:44 +01:00
|
|
|
|
2010-02-17 01:07:40 +01:00
|
|
|
(defun notmuch-search-find-thread-id-region (beg end)
|
|
|
|
"Return a list of threads for the current region"
|
|
|
|
(notmuch-search-properties-in-region 'notmuch-search-thread-id beg end))
|
|
|
|
|
2009-12-05 03:26:36 +01:00
|
|
|
(defun notmuch-search-find-authors ()
|
|
|
|
"Return the authors for the current thread"
|
|
|
|
(get-text-property (point) 'notmuch-search-authors))
|
|
|
|
|
2010-02-17 01:07:40 +01:00
|
|
|
(defun notmuch-search-find-authors-region (beg end)
|
|
|
|
"Return a list of authors for the current region"
|
|
|
|
(notmuch-search-properties-in-region 'notmuch-search-authors beg end))
|
|
|
|
|
2009-12-05 03:26:36 +01:00
|
|
|
(defun notmuch-search-find-subject ()
|
|
|
|
"Return the subject for the current thread"
|
|
|
|
(get-text-property (point) 'notmuch-search-subject))
|
|
|
|
|
2010-02-17 01:07:40 +01:00
|
|
|
(defun notmuch-search-find-subject-region (beg end)
|
|
|
|
"Return a list of authors for the current region"
|
|
|
|
(notmuch-search-properties-in-region 'notmuch-search-subject beg end))
|
|
|
|
|
2009-10-31 09:41:44 +01:00
|
|
|
(defun notmuch-search-show-thread ()
|
2009-11-30 18:49:53 +01:00
|
|
|
"Display the currently selected thread."
|
2009-10-31 09:41:44 +01:00
|
|
|
(interactive)
|
2010-03-06 15:20:21 +01:00
|
|
|
(let ((thread-id (notmuch-search-find-thread-id))
|
2010-04-11 09:58:43 +02:00
|
|
|
(subject (notmuch-search-find-subject)))
|
2009-11-04 19:43:07 +01:00
|
|
|
(if (> (length thread-id) 0)
|
2010-03-06 15:20:21 +01:00
|
|
|
(notmuch-show thread-id
|
|
|
|
(current-buffer)
|
|
|
|
notmuch-search-query-string
|
2010-04-11 09:58:43 +02:00
|
|
|
;; name the buffer based on notmuch-search-find-subject
|
|
|
|
(if (string-match "^[ \t]*$" subject)
|
|
|
|
"[No Subject]"
|
|
|
|
(truncate-string-to-width
|
|
|
|
(concat "*"
|
|
|
|
(truncate-string-to-width subject 32 nil nil t)
|
|
|
|
"*")
|
|
|
|
32 nil nil t)))
|
2009-11-04 19:43:07 +01:00
|
|
|
(error "End of search results"))))
|
2009-10-31 09:41:44 +01:00
|
|
|
|
2009-11-19 00:21:24 +01:00
|
|
|
(defun notmuch-search-reply-to-thread ()
|
|
|
|
"Begin composing a reply to the entire current thread in a new buffer."
|
|
|
|
(interactive)
|
|
|
|
(let ((message-id (notmuch-search-find-thread-id)))
|
|
|
|
(notmuch-reply message-id)))
|
|
|
|
|
2009-11-03 20:42:04 +01:00
|
|
|
(defun notmuch-call-notmuch-process (&rest args)
|
2009-11-05 20:15:56 +01:00
|
|
|
"Synchronously invoke \"notmuch\" with the given list of arguments.
|
|
|
|
|
|
|
|
Output from the process will be presented to the user as an error
|
|
|
|
and will also appear in a buffer named \"*Notmuch errors*\"."
|
2009-10-31 20:09:06 +01:00
|
|
|
(let ((error-buffer (get-buffer-create "*Notmuch errors*")))
|
|
|
|
(with-current-buffer error-buffer
|
|
|
|
(erase-buffer))
|
2009-11-20 02:15:40 +01:00
|
|
|
(if (eq (apply 'call-process notmuch-command nil error-buffer nil args) 0)
|
2009-10-31 20:09:06 +01:00
|
|
|
(point)
|
|
|
|
(progn
|
|
|
|
(with-current-buffer error-buffer
|
|
|
|
(let ((beg (point-min))
|
|
|
|
(end (- (point-max) 1)))
|
|
|
|
(error (buffer-substring beg end))
|
|
|
|
))))))
|
|
|
|
|
2009-11-03 00:48:21 +01:00
|
|
|
(defun notmuch-search-set-tags (tags)
|
|
|
|
(save-excursion
|
|
|
|
(end-of-line)
|
|
|
|
(re-search-backward "(")
|
|
|
|
(forward-char)
|
|
|
|
(let ((beg (point))
|
|
|
|
(inhibit-read-only t))
|
|
|
|
(re-search-forward ")")
|
|
|
|
(backward-char)
|
|
|
|
(let ((end (point)))
|
|
|
|
(delete-region beg end)
|
2010-04-12 09:51:30 +02:00
|
|
|
(insert (propertize (mapconcat 'identity tags " ")
|
|
|
|
'font-lock-face 'notmuch-tag-face))))))
|
2009-11-03 00:48:21 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-get-tags ()
|
|
|
|
(save-excursion
|
|
|
|
(end-of-line)
|
|
|
|
(re-search-backward "(")
|
|
|
|
(let ((beg (+ (point) 1)))
|
|
|
|
(re-search-forward ")")
|
|
|
|
(let ((end (- (point) 1)))
|
|
|
|
(split-string (buffer-substring beg end))))))
|
|
|
|
|
2010-02-17 01:07:40 +01:00
|
|
|
(defun notmuch-search-get-tags-region (beg end)
|
|
|
|
(save-excursion
|
|
|
|
(let ((output nil)
|
2010-04-13 20:47:19 +02:00
|
|
|
(last-line (line-number-at-pos end))
|
|
|
|
(max-line (- (line-number-at-pos (point-max)) 2)))
|
2010-02-17 01:07:40 +01:00
|
|
|
(goto-char beg)
|
2010-04-13 20:47:19 +02:00
|
|
|
(while (<= (line-number-at-pos) (min last-line max-line))
|
2010-02-17 01:07:40 +01:00
|
|
|
(setq output (append output (notmuch-search-get-tags)))
|
|
|
|
(forward-line 1))
|
|
|
|
output)))
|
|
|
|
|
|
|
|
(defun notmuch-search-add-tag-thread (tag)
|
2010-04-13 20:47:19 +02:00
|
|
|
(notmuch-search-add-tag-region tag (point) (point)))
|
2010-02-17 01:07:40 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-add-tag-region (tag beg end)
|
|
|
|
(let ((search-id-string (mapconcat 'identity (notmuch-search-find-thread-id-region beg end) " or ")))
|
|
|
|
(notmuch-call-notmuch-process "tag" (concat "+" tag) search-id-string)
|
|
|
|
(save-excursion
|
2010-04-13 20:47:19 +02:00
|
|
|
(let ((last-line (line-number-at-pos end))
|
|
|
|
(max-line (- (line-number-at-pos (point-max)) 2)))
|
2010-02-17 01:07:40 +01:00
|
|
|
(goto-char beg)
|
2010-04-13 20:47:19 +02:00
|
|
|
(while (<= (line-number-at-pos) (min last-line max-line))
|
2010-02-17 01:07:40 +01:00
|
|
|
(notmuch-search-set-tags (delete-dups (sort (cons tag (notmuch-search-get-tags)) 'string<)))
|
|
|
|
(forward-line))))))
|
|
|
|
|
|
|
|
(defun notmuch-search-remove-tag-thread (tag)
|
2010-04-13 20:47:19 +02:00
|
|
|
(notmuch-search-remove-tag-region tag (point) (point)))
|
2010-02-17 01:07:40 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-remove-tag-region (tag beg end)
|
|
|
|
(let ((search-id-string (mapconcat 'identity (notmuch-search-find-thread-id-region beg end) " or ")))
|
|
|
|
(notmuch-call-notmuch-process "tag" (concat "-" tag) search-id-string)
|
|
|
|
(save-excursion
|
2010-04-13 20:47:19 +02:00
|
|
|
(let ((last-line (line-number-at-pos end))
|
|
|
|
(max-line (- (line-number-at-pos (point-max)) 2)))
|
2010-02-17 01:07:40 +01:00
|
|
|
(goto-char beg)
|
2010-04-13 20:47:19 +02:00
|
|
|
(while (<= (line-number-at-pos) (min last-line max-line))
|
2010-02-17 01:07:40 +01:00
|
|
|
(notmuch-search-set-tags (delete tag (notmuch-search-get-tags)))
|
|
|
|
(forward-line))))))
|
|
|
|
|
2009-10-31 20:09:06 +01:00
|
|
|
(defun notmuch-search-add-tag (tag)
|
2010-02-17 01:07:40 +01:00
|
|
|
"Add a tag to the currently selected thread or region.
|
2009-12-01 01:52:31 +01:00
|
|
|
|
2010-04-07 22:15:27 +02:00
|
|
|
The tag is added to all messages in the currently selected thread
|
|
|
|
or threads in the current region."
|
2009-11-23 01:10:56 +01:00
|
|
|
(interactive
|
|
|
|
(list (notmuch-select-tag-with-completion "Tag to add: ")))
|
2010-02-17 01:07:40 +01:00
|
|
|
(save-excursion
|
|
|
|
(if (region-active-p)
|
|
|
|
(let* ((beg (region-beginning))
|
|
|
|
(end (region-end)))
|
|
|
|
(notmuch-search-add-tag-region tag beg end))
|
|
|
|
(notmuch-search-add-tag-thread tag))))
|
2009-10-31 20:09:06 +01:00
|
|
|
|
|
|
|
(defun notmuch-search-remove-tag (tag)
|
2010-02-17 01:07:40 +01:00
|
|
|
"Remove a tag from the currently selected thread or region.
|
2009-12-01 01:52:31 +01:00
|
|
|
|
2010-04-07 22:15:27 +02:00
|
|
|
The tag is removed from all messages in the currently selected
|
|
|
|
thread or threads in the current region."
|
2009-11-23 01:10:56 +01:00
|
|
|
(interactive
|
2010-02-17 01:07:40 +01:00
|
|
|
(list (notmuch-select-tag-with-completion
|
|
|
|
"Tag to remove: "
|
|
|
|
(if (region-active-p)
|
|
|
|
(mapconcat 'identity
|
|
|
|
(notmuch-search-find-thread-id-region (region-beginning) (region-end))
|
|
|
|
" ")
|
|
|
|
(notmuch-search-find-thread-id)))))
|
|
|
|
(save-excursion
|
|
|
|
(if (region-active-p)
|
|
|
|
(let* ((beg (region-beginning))
|
|
|
|
(end (region-end)))
|
|
|
|
(notmuch-search-remove-tag-region tag beg end))
|
|
|
|
(notmuch-search-remove-tag-thread tag))))
|
2009-10-31 20:09:06 +01:00
|
|
|
|
2009-10-31 09:55:12 +01:00
|
|
|
(defun notmuch-search-archive-thread ()
|
2009-12-01 01:52:31 +01:00
|
|
|
"Archive the currently selected thread (remove its \"inbox\" tag).
|
2009-11-04 02:18:04 +01:00
|
|
|
|
2009-12-01 01:52:31 +01:00
|
|
|
This function advances the next thread when finished."
|
2009-10-31 09:55:12 +01:00
|
|
|
(interactive)
|
2010-02-17 01:07:40 +01:00
|
|
|
(notmuch-search-remove-tag-thread "inbox")
|
2009-11-04 18:32:47 +01:00
|
|
|
(forward-line))
|
2009-10-31 09:55:12 +01:00
|
|
|
|
2009-11-25 03:49:58 +01:00
|
|
|
(defun notmuch-search-process-sentinel (proc msg)
|
|
|
|
"Add a message to let user know when \"notmuch search\" exits"
|
|
|
|
(let ((buffer (process-buffer proc))
|
|
|
|
(status (process-status proc))
|
2010-03-09 20:36:08 +01:00
|
|
|
(exit-status (process-exit-status proc))
|
|
|
|
(never-found-target-thread nil))
|
2009-11-25 03:49:58 +01:00
|
|
|
(if (memq status '(exit signal))
|
|
|
|
(if (buffer-live-p buffer)
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(save-excursion
|
2010-03-09 20:36:08 +01:00
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
(atbob (bobp)))
|
2009-11-25 03:49:58 +01:00
|
|
|
(goto-char (point-max))
|
|
|
|
(if (eq status 'signal)
|
|
|
|
(insert "Incomplete search results (search process was killed).\n"))
|
|
|
|
(if (eq status 'exit)
|
|
|
|
(progn
|
|
|
|
(insert "End of search results.")
|
|
|
|
(if (not (= exit-status 0))
|
|
|
|
(insert (format " (process returned %d)" exit-status)))
|
2010-03-09 20:36:08 +01:00
|
|
|
(insert "\n")
|
|
|
|
(if (and atbob
|
2010-03-10 20:07:58 +01:00
|
|
|
(not (string= notmuch-search-target-thread "found")))
|
2010-03-09 20:36:08 +01:00
|
|
|
(set 'never-found-target-thread t))))))
|
2010-03-10 20:05:33 +01:00
|
|
|
(if (and never-found-target-thread
|
|
|
|
notmuch-search-target-line)
|
|
|
|
(goto-line notmuch-search-target-line)))))))
|
2009-11-25 03:49:58 +01:00
|
|
|
|
2010-02-04 13:07:26 +01:00
|
|
|
(defcustom notmuch-search-line-faces nil
|
|
|
|
"Tag/face mapping for line highlighting in notmuch-search.
|
|
|
|
|
|
|
|
Here is an example of how to color search results based on tags.
|
|
|
|
(the following text would be placed in your ~/.emacs file):
|
|
|
|
|
|
|
|
(setq notmuch-search-line-faces '((\"delete\" . '(:foreground \"red\"))
|
|
|
|
(\"unread\" . '(:foreground \"green\"))))
|
|
|
|
|
|
|
|
Order matters: for lines with multiple tags, the the first
|
|
|
|
matching will be applied."
|
|
|
|
:type '(alist :key-type (string) :value-type (list))
|
|
|
|
:group 'notmuch)
|
|
|
|
|
|
|
|
(defun notmuch-search-color-line (start end line-tag-list)
|
|
|
|
"Colorize lines in notmuch-show based on tags"
|
|
|
|
(if notmuch-search-line-faces
|
|
|
|
(let ((overlay (make-overlay start end))
|
|
|
|
(tags-faces (copy-alist notmuch-search-line-faces)))
|
|
|
|
(while tags-faces
|
|
|
|
(let* ((tag-face (car tags-faces))
|
|
|
|
(tag (car tag-face))
|
|
|
|
(face (cdr tag-face)))
|
|
|
|
(cond ((member tag line-tag-list)
|
|
|
|
(overlay-put overlay 'face face)
|
|
|
|
(setq tags-faces nil))
|
|
|
|
(t
|
|
|
|
(setq tags-faces (cdr tags-faces)))))))))
|
|
|
|
|
2010-04-12 09:51:30 +02:00
|
|
|
(defun notmuch-search-insert-field (field date count authors subject tags)
|
|
|
|
(cond
|
|
|
|
((string-equal field "date")
|
|
|
|
(insert (format (cdr (assoc field notmuch-search-result-format)) date)))
|
|
|
|
((string-equal field "count")
|
|
|
|
(insert (format (cdr (assoc field notmuch-search-result-format)) count)))
|
|
|
|
((string-equal field "authors")
|
|
|
|
(insert (format (cdr (assoc field notmuch-search-result-format)) authors)))
|
|
|
|
((string-equal field "subject")
|
|
|
|
(insert (format (cdr (assoc field notmuch-search-result-format)) subject)))
|
|
|
|
((string-equal field "tags")
|
|
|
|
(insert (concat "(" (propertize tags 'font-lock-face 'notmuch-tag-face) ")")))))
|
|
|
|
|
|
|
|
(defun notmuch-search-show-result (date count authors subject tags)
|
|
|
|
(let ((fields) (field))
|
|
|
|
(setq fields (mapcar 'car notmuch-search-result-format))
|
|
|
|
(loop for field in fields
|
|
|
|
do (notmuch-search-insert-field field date count authors subject tags)))
|
|
|
|
(insert "\n"))
|
|
|
|
|
2009-11-25 03:49:58 +01:00
|
|
|
(defun notmuch-search-process-filter (proc string)
|
|
|
|
"Process and filter the output of \"notmuch search\""
|
2010-03-09 20:36:08 +01:00
|
|
|
(let ((buffer (process-buffer proc))
|
|
|
|
(found-target nil))
|
2009-11-25 03:49:58 +01:00
|
|
|
(if (buffer-live-p buffer)
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(save-excursion
|
|
|
|
(let ((line 0)
|
|
|
|
(more t)
|
|
|
|
(inhibit-read-only t))
|
|
|
|
(while more
|
2010-02-12 01:19:37 +01:00
|
|
|
(if (string-match "^\\(thread:[0-9A-Fa-f]*\\) \\(.*\\) \\(\\[[0-9/]*\\]\\) \\([^;]*\\); \\(.*\\) (\\([^()]*\\))$" string line)
|
2009-11-25 03:49:58 +01:00
|
|
|
(let* ((thread-id (match-string 1 string))
|
|
|
|
(date (match-string 2 string))
|
|
|
|
(count (match-string 3 string))
|
|
|
|
(authors (match-string 4 string))
|
|
|
|
(authors-length (length authors))
|
|
|
|
(subject (match-string 5 string))
|
2010-02-04 13:07:26 +01:00
|
|
|
(tags (match-string 6 string))
|
|
|
|
(tag-list (if tags (save-match-data (split-string tags)))))
|
2010-03-12 00:04:17 +01:00
|
|
|
(if (> authors-length notmuch-search-authors-width)
|
|
|
|
(set 'authors (concat (substring authors 0 (- notmuch-search-authors-width 3)) "...")))
|
2009-11-25 03:49:58 +01:00
|
|
|
(goto-char (point-max))
|
2010-04-12 09:51:30 +02:00
|
|
|
(let ((beg (point-marker)))
|
|
|
|
(notmuch-search-show-result date count authors subject tags)
|
2010-02-04 13:07:26 +01:00
|
|
|
(notmuch-search-color-line beg (point-marker) tag-list)
|
2009-12-05 03:26:36 +01:00
|
|
|
(put-text-property beg (point-marker) 'notmuch-search-thread-id thread-id)
|
|
|
|
(put-text-property beg (point-marker) 'notmuch-search-authors authors)
|
2010-03-09 20:36:08 +01:00
|
|
|
(put-text-property beg (point-marker) 'notmuch-search-subject subject)
|
2010-03-10 20:07:58 +01:00
|
|
|
(if (string= thread-id notmuch-search-target-thread)
|
2010-03-09 20:36:08 +01:00
|
|
|
(progn
|
|
|
|
(set 'found-target beg)
|
2010-03-10 20:07:58 +01:00
|
|
|
(set 'notmuch-search-target-thread "found"))))
|
2009-11-25 03:49:58 +01:00
|
|
|
(set 'line (match-end 0)))
|
2010-03-09 20:36:08 +01:00
|
|
|
(set 'more nil)))))
|
|
|
|
(if found-target
|
|
|
|
(goto-char found-target)))
|
2009-11-25 03:49:58 +01:00
|
|
|
(delete-process proc))))
|
|
|
|
|
2009-11-26 22:36:49 +01:00
|
|
|
(defun notmuch-search-operate-all (action)
|
2009-12-01 01:52:31 +01:00
|
|
|
"Add/remove tags from all matching messages.
|
2009-11-26 22:36:49 +01:00
|
|
|
|
2009-12-01 01:52:31 +01:00
|
|
|
Tis command adds or removes tags from all messages matching the
|
|
|
|
current search terms. When called interactively, this command
|
|
|
|
will prompt for tags to be added or removed. Tags prefixed with
|
|
|
|
'+' will be added and tags prefixed with '-' will be removed.
|
2009-11-26 22:36:49 +01:00
|
|
|
|
|
|
|
Each character of the tag name may consist of alphanumeric
|
|
|
|
characters as well as `_.+-'.
|
|
|
|
"
|
|
|
|
(interactive "sOperation (+add -drop): notmuch tag ")
|
|
|
|
(let ((action-split (split-string action " +")))
|
|
|
|
;; Perform some validation
|
|
|
|
(let ((words action-split))
|
|
|
|
(when (null words) (error "No operation given"))
|
|
|
|
(while words
|
2009-11-28 20:51:13 +01:00
|
|
|
(unless (string-match-p "^[-+][-+_.[:word:]]+$" (car words))
|
2009-11-26 22:36:49 +01:00
|
|
|
(error "Action must be of the form `+thistag -that_tag'"))
|
|
|
|
(setq words (cdr words))))
|
|
|
|
(apply 'notmuch-call-notmuch-process "tag"
|
|
|
|
(append action-split (list notmuch-search-query-string) nil))))
|
|
|
|
|
2010-04-22 02:04:36 +02:00
|
|
|
(defcustom notmuch-folders (quote (("inbox" . "tag:inbox") ("unread" . "tag:unread")))
|
|
|
|
"List of searches for the notmuch folder view"
|
|
|
|
:type '(alist :key-type (string) :value-type (string))
|
|
|
|
:group 'notmuch)
|
|
|
|
|
2010-04-19 05:55:50 +02:00
|
|
|
(defun notmuch-search-buffer-title (query)
|
|
|
|
"Returns the title for a buffer with notmuch search results."
|
|
|
|
(let* ((folder (rassoc-if (lambda (key)
|
|
|
|
(string-match (concat "^" (regexp-quote key))
|
|
|
|
query))
|
|
|
|
notmuch-folders))
|
|
|
|
(folder-name (car folder))
|
|
|
|
(folder-query (cdr folder)))
|
|
|
|
(cond ((and folder (equal folder-query query))
|
|
|
|
;; Query is the same as folder search (ignoring case)
|
|
|
|
(concat "*notmuch-folder-" folder-name "*"))
|
|
|
|
(folder
|
|
|
|
(concat "*notmuch-search-"
|
|
|
|
(replace-regexp-in-string (concat "^" (regexp-quote folder-query))
|
|
|
|
(concat "[ " folder-name " ]")
|
|
|
|
query)
|
|
|
|
"*"))
|
|
|
|
(t
|
|
|
|
(concat "*notmuch-search-" query "*"))
|
|
|
|
)))
|
|
|
|
|
2009-11-27 14:30:08 +01:00
|
|
|
;;;###autoload
|
2010-03-10 20:05:33 +01:00
|
|
|
(defun notmuch-search (query &optional oldest-first target-thread target-line)
|
2010-03-09 20:36:08 +01:00
|
|
|
"Run \"notmuch search\" with the given query string and display results.
|
|
|
|
|
|
|
|
The optional parameters are used as follows:
|
|
|
|
|
|
|
|
oldest-first: A Boolean controlling the sort order of returned threads
|
|
|
|
target-thread: A thread ID (with the thread: prefix) that will be made
|
|
|
|
current if it appears in the search results.
|
2010-03-10 20:05:33 +01:00
|
|
|
target-line: The line number to move to if the target thread does not
|
|
|
|
appear in the search results."
|
2009-10-31 07:42:39 +01:00
|
|
|
(interactive "sNotmuch search: ")
|
2010-04-19 05:55:50 +02:00
|
|
|
(let ((buffer (get-buffer-create (notmuch-search-buffer-title query))))
|
2009-10-31 08:44:39 +01:00
|
|
|
(switch-to-buffer buffer)
|
2009-10-31 09:04:01 +01:00
|
|
|
(notmuch-search-mode)
|
2009-11-03 02:56:18 +01:00
|
|
|
(set 'notmuch-search-query-string query)
|
2009-11-13 07:58:51 +01:00
|
|
|
(set 'notmuch-search-oldest-first oldest-first)
|
2010-03-09 20:36:08 +01:00
|
|
|
(set 'notmuch-search-target-thread target-thread)
|
2010-03-10 20:05:33 +01:00
|
|
|
(set 'notmuch-search-target-line target-line)
|
2009-10-31 08:44:39 +01:00
|
|
|
(let ((proc (get-buffer-process (current-buffer)))
|
|
|
|
(inhibit-read-only t))
|
|
|
|
(if proc
|
|
|
|
(error "notmuch search process already running for query `%s'" query)
|
|
|
|
)
|
|
|
|
(erase-buffer)
|
2009-11-03 03:23:06 +01:00
|
|
|
(goto-char (point-min))
|
2009-10-31 08:44:39 +01:00
|
|
|
(save-excursion
|
2009-11-25 03:49:58 +01:00
|
|
|
(let ((proc (start-process-shell-command
|
|
|
|
"notmuch-search" buffer notmuch-command "search"
|
|
|
|
(if oldest-first "--sort=oldest-first" "--sort=newest-first")
|
2009-11-25 04:08:53 +01:00
|
|
|
(shell-quote-argument query))))
|
2009-11-25 03:49:58 +01:00
|
|
|
(set-process-sentinel proc 'notmuch-search-process-sentinel)
|
|
|
|
(set-process-filter proc 'notmuch-search-process-filter))))
|
2009-11-19 07:10:54 +01:00
|
|
|
(run-hooks 'notmuch-search-hook)))
|
2009-10-31 01:18:19 +01:00
|
|
|
|
2009-11-03 20:47:48 +01:00
|
|
|
(defun notmuch-search-refresh-view ()
|
|
|
|
"Refresh the current view.
|
|
|
|
|
|
|
|
Kills the current buffer and runs a new search with the same
|
2009-11-03 20:54:34 +01:00
|
|
|
query string as the current search. If the current thread is in
|
|
|
|
the new search results, then point will be placed on the same
|
|
|
|
thread. Otherwise, point will be moved to attempt to be in the
|
|
|
|
same relative position within the new buffer."
|
2009-11-03 20:47:48 +01:00
|
|
|
(interactive)
|
2010-03-10 20:05:33 +01:00
|
|
|
(let ((target-line (line-number-at-pos))
|
2009-11-13 07:58:51 +01:00
|
|
|
(oldest-first notmuch-search-oldest-first)
|
2010-03-10 20:05:33 +01:00
|
|
|
(target-thread (notmuch-search-find-thread-id))
|
2009-11-03 20:54:34 +01:00
|
|
|
(query notmuch-search-query-string))
|
2009-11-03 20:47:48 +01:00
|
|
|
(kill-this-buffer)
|
2010-03-10 20:05:33 +01:00
|
|
|
(notmuch-search query oldest-first target-thread target-line)
|
2009-11-03 20:54:34 +01:00
|
|
|
(goto-char (point-min))
|
2010-03-09 20:36:08 +01:00
|
|
|
))
|
2009-11-03 20:47:48 +01:00
|
|
|
|
2010-04-22 23:46:15 +02:00
|
|
|
(defcustom notmuch-poll-script ""
|
|
|
|
"An external script to incorporate new mail into the notmuch database.
|
|
|
|
|
|
|
|
If this variable is non empty, then it should name a script to be
|
|
|
|
invoked by `notmuch-search-poll-and-refresh-view' and
|
|
|
|
`notmuch-folder-poll-and-refresh-view' (each have a default
|
|
|
|
keybinding of 'G'). The script could do any of the following
|
|
|
|
depending on the user's needs:
|
|
|
|
|
|
|
|
1. Invoke a program to transfer mail to the local mail store
|
|
|
|
2. Invoke \"notmuch new\" to incorporate the new mail
|
|
|
|
3. Invoke one or more \"notmuch tag\" commands to classify the mail"
|
|
|
|
:type 'string
|
|
|
|
:group 'notmuch)
|
2010-04-09 21:53:26 +02:00
|
|
|
|
2010-04-22 23:46:15 +02:00
|
|
|
(defun notmuch-poll ()
|
|
|
|
"Run external script to import mail.
|
|
|
|
|
|
|
|
Invokes `notmuch-poll-script' if it is not set to an empty string."
|
2010-04-09 21:53:26 +02:00
|
|
|
(interactive)
|
2010-04-22 23:46:15 +02:00
|
|
|
(if (not (string= notmuch-poll-script ""))
|
|
|
|
(call-process notmuch-poll-script nil nil)))
|
|
|
|
|
|
|
|
(defun notmuch-search-poll-and-refresh-view ()
|
|
|
|
"Invoke `notmuch-poll' to import mail, then refresh the current view."
|
|
|
|
(interactive)
|
|
|
|
(notmuch-poll)
|
2010-04-09 21:53:26 +02:00
|
|
|
(notmuch-search-refresh-view))
|
|
|
|
|
2009-11-13 08:16:19 +01:00
|
|
|
(defun notmuch-search-toggle-order ()
|
|
|
|
"Toggle the current search order.
|
|
|
|
|
|
|
|
By default, the \"inbox\" view created by `notmuch' is displayed
|
|
|
|
in chronological order (oldest thread at the beginning of the
|
|
|
|
buffer), while any global searches created by `notmuch-search'
|
|
|
|
are displayed in reverse-chronological order (newest thread at
|
|
|
|
the beginning of the buffer).
|
|
|
|
|
|
|
|
This command toggles the sort order for the current search.
|
|
|
|
|
2009-11-18 00:23:42 +01:00
|
|
|
Note that any filtered searches created by
|
2009-11-13 08:16:19 +01:00
|
|
|
`notmuch-search-filter' retain the search order of the parent
|
|
|
|
search."
|
|
|
|
(interactive)
|
|
|
|
(set 'notmuch-search-oldest-first (not notmuch-search-oldest-first))
|
|
|
|
(notmuch-search-refresh-view))
|
|
|
|
|
2009-11-03 02:56:18 +01:00
|
|
|
(defun notmuch-search-filter (query)
|
2009-11-04 02:01:07 +01:00
|
|
|
"Filter the current search results based on an additional query string.
|
2009-11-03 02:56:18 +01:00
|
|
|
|
2009-11-04 02:01:07 +01:00
|
|
|
Runs a new search matching only messages that match both the
|
|
|
|
current search results AND the additional query string provided."
|
2009-11-03 02:56:18 +01:00
|
|
|
(interactive "sFilter search: ")
|
2010-04-16 06:22:57 +02:00
|
|
|
(let ((grouped-query (if (string-match-p notmuch-search-disjunctive-regexp query)
|
|
|
|
(concat "( " query " )")
|
|
|
|
query)))
|
|
|
|
(notmuch-search (if (string= notmuch-search-query-string "*")
|
|
|
|
grouped-query
|
|
|
|
(concat notmuch-search-query-string " and " grouped-query)) notmuch-search-oldest-first)))
|
2009-11-03 02:56:18 +01:00
|
|
|
|
2009-11-04 02:01:07 +01:00
|
|
|
(defun notmuch-search-filter-by-tag (tag)
|
|
|
|
"Filter the current search results based on a single tag.
|
|
|
|
|
|
|
|
Runs a new search matching only messages that match both the
|
|
|
|
current search results AND that are tagged with the given tag."
|
2009-11-23 01:10:56 +01:00
|
|
|
(interactive
|
|
|
|
(list (notmuch-select-tag-with-completion "Filter by tag: ")))
|
2009-11-13 07:58:51 +01:00
|
|
|
(notmuch-search (concat notmuch-search-query-string " and tag:" tag) notmuch-search-oldest-first))
|
2009-11-04 02:01:07 +01:00
|
|
|
|
2009-11-27 14:30:08 +01:00
|
|
|
;;;###autoload
|
2009-10-30 23:17:27 +01:00
|
|
|
(defun notmuch ()
|
|
|
|
"Run notmuch to display all mail with tag of 'inbox'"
|
|
|
|
(interactive)
|
2009-11-23 15:50:59 +01:00
|
|
|
(notmuch-search "tag:inbox" notmuch-search-oldest-first))
|
2009-10-31 09:04:01 +01:00
|
|
|
|
2009-11-18 18:33:52 +01:00
|
|
|
(setq mail-user-agent 'message-user-agent)
|
|
|
|
|
2009-11-21 20:59:00 +01:00
|
|
|
(defvar notmuch-folder-mode-map
|
|
|
|
(let ((map (make-sparse-keymap)))
|
2009-12-01 07:43:14 +01:00
|
|
|
(define-key map "?" 'notmuch-help)
|
2009-11-21 20:59:00 +01:00
|
|
|
(define-key map "x" 'kill-this-buffer)
|
|
|
|
(define-key map "q" 'kill-this-buffer)
|
2009-12-27 01:34:16 +01:00
|
|
|
(define-key map "m" 'message-mail)
|
2009-12-27 01:34:18 +01:00
|
|
|
(define-key map "e" 'notmuch-folder-show-empty-toggle)
|
2009-12-01 07:43:14 +01:00
|
|
|
(define-key map ">" 'notmuch-folder-last)
|
|
|
|
(define-key map "<" 'notmuch-folder-first)
|
2009-11-21 20:59:00 +01:00
|
|
|
(define-key map "=" 'notmuch-folder)
|
2010-04-22 23:24:37 +02:00
|
|
|
(define-key map "G" 'notmuch-folder-poll-and-refresh-view)
|
2009-12-01 07:43:14 +01:00
|
|
|
(define-key map "s" 'notmuch-search)
|
2009-11-21 20:59:00 +01:00
|
|
|
(define-key map [mouse-1] 'notmuch-folder-show-search)
|
2009-12-01 07:43:14 +01:00
|
|
|
(define-key map (kbd "RET") 'notmuch-folder-show-search)
|
2009-12-27 01:34:16 +01:00
|
|
|
(define-key map " " 'notmuch-folder-show-search)
|
2009-12-01 07:43:14 +01:00
|
|
|
(define-key map "p" 'notmuch-folder-previous)
|
|
|
|
(define-key map "n" 'notmuch-folder-next)
|
2009-11-21 20:59:00 +01:00
|
|
|
map)
|
|
|
|
"Keymap for \"notmuch folder\" buffers.")
|
|
|
|
|
|
|
|
(fset 'notmuch-folder-mode-map notmuch-folder-mode-map)
|
|
|
|
|
|
|
|
(defun notmuch-folder-mode ()
|
|
|
|
"Major mode for showing notmuch 'folders'.
|
|
|
|
|
2009-12-01 07:43:14 +01:00
|
|
|
This buffer contains a list of message counts returned by a
|
|
|
|
customizable set of searches of your email archives. Each line in
|
|
|
|
the buffer shows the name of a saved search and the resulting
|
|
|
|
message count.
|
2009-11-21 20:59:00 +01:00
|
|
|
|
|
|
|
Pressing RET on any line opens a search window containing the
|
2009-12-01 07:43:14 +01:00
|
|
|
results for the saved search on that line.
|
|
|
|
|
|
|
|
Here is an example of how the search list could be
|
|
|
|
customized, (the following text would be placed in your ~/.emacs
|
|
|
|
file):
|
|
|
|
|
|
|
|
(setq notmuch-folders '((\"inbox\" . \"tag:inbox\")
|
|
|
|
(\"unread\" . \"tag:inbox AND tag:unread\")
|
|
|
|
(\"notmuch\" . \"tag:inbox AND to:notmuchmail.org\")))
|
|
|
|
|
|
|
|
Of course, you can have any number of folders, each configured
|
|
|
|
with any supported search terms (see \"notmuch help search-terms\").
|
|
|
|
|
|
|
|
Currently available key bindings:
|
2009-11-21 20:59:00 +01:00
|
|
|
|
|
|
|
\\{notmuch-folder-mode-map}"
|
|
|
|
(interactive)
|
|
|
|
(kill-all-local-variables)
|
|
|
|
(use-local-map 'notmuch-folder-mode-map)
|
|
|
|
(setq truncate-lines t)
|
|
|
|
(hl-line-mode 1)
|
|
|
|
(setq major-mode 'notmuch-folder-mode
|
|
|
|
mode-name "notmuch-folder")
|
|
|
|
(setq buffer-read-only t))
|
|
|
|
|
2009-12-01 07:43:14 +01:00
|
|
|
(defun notmuch-folder-next ()
|
|
|
|
"Select the next folder in the list."
|
|
|
|
(interactive)
|
|
|
|
(forward-line 1)
|
|
|
|
(if (eobp)
|
|
|
|
(forward-line -1)))
|
|
|
|
|
|
|
|
(defun notmuch-folder-previous ()
|
|
|
|
"Select the previous folder in the list."
|
|
|
|
(interactive)
|
|
|
|
(forward-line -1))
|
|
|
|
|
|
|
|
(defun notmuch-folder-first ()
|
|
|
|
"Select the first folder in the list."
|
|
|
|
(interactive)
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
|
|
|
(defun notmuch-folder-last ()
|
|
|
|
"Select the last folder in the list."
|
|
|
|
(interactive)
|
|
|
|
(goto-char (point-max))
|
|
|
|
(forward-line -1))
|
|
|
|
|
2009-12-27 01:34:18 +01:00
|
|
|
(defun notmuch-folder-count (search)
|
|
|
|
(car (process-lines notmuch-command "count" search)))
|
|
|
|
|
2010-04-03 21:22:14 +02:00
|
|
|
(defvar notmuch-folder-show-empty t
|
|
|
|
"Whether `notmuch-folder-mode' should display empty folders.")
|
2009-12-27 01:34:18 +01:00
|
|
|
|
|
|
|
(defun notmuch-folder-show-empty-toggle ()
|
|
|
|
"Toggle the listing of empty folders"
|
|
|
|
(interactive)
|
|
|
|
(setq notmuch-folder-show-empty (not notmuch-folder-show-empty))
|
|
|
|
(notmuch-folder))
|
|
|
|
|
2009-11-21 20:59:00 +01:00
|
|
|
(defun notmuch-folder-add (folders)
|
|
|
|
(if folders
|
2009-12-27 01:34:18 +01:00
|
|
|
(let* ((name (car (car folders)))
|
2009-11-21 20:59:00 +01:00
|
|
|
(inhibit-read-only t)
|
2009-12-27 01:34:18 +01:00
|
|
|
(search (cdr (car folders)))
|
|
|
|
(count (notmuch-folder-count search)))
|
|
|
|
(if (or notmuch-folder-show-empty
|
|
|
|
(not (equal count "0")))
|
|
|
|
(progn
|
|
|
|
(insert name)
|
|
|
|
(indent-to 16 1)
|
|
|
|
(insert count)
|
|
|
|
(insert "\n")
|
|
|
|
)
|
|
|
|
)
|
2009-11-21 20:59:00 +01:00
|
|
|
(notmuch-folder-add (cdr folders)))))
|
|
|
|
|
|
|
|
(defun notmuch-folder-find-name ()
|
|
|
|
(save-excursion
|
|
|
|
(beginning-of-line)
|
|
|
|
(let ((beg (point)))
|
2009-12-27 01:34:17 +01:00
|
|
|
(re-search-forward "\\([ \t]*[^ \t]+\\)")
|
|
|
|
(filter-buffer-substring (match-beginning 1) (match-end 1)))))
|
2009-11-21 20:59:00 +01:00
|
|
|
|
|
|
|
(defun notmuch-folder-show-search (&optional folder)
|
|
|
|
"Show a search window for the search related to the specified folder."
|
|
|
|
(interactive)
|
|
|
|
(if (null folder)
|
|
|
|
(setq folder (notmuch-folder-find-name)))
|
|
|
|
(let ((search (assoc folder notmuch-folders)))
|
|
|
|
(if search
|
2009-11-23 15:50:59 +01:00
|
|
|
(notmuch-search (cdr search) notmuch-search-oldest-first))))
|
2009-11-21 20:59:00 +01:00
|
|
|
|
2010-04-22 23:24:37 +02:00
|
|
|
(defun notmuch-folder-poll-and-refresh-view ()
|
2010-04-22 23:46:15 +02:00
|
|
|
"Invoke `notmuch-poll' to import mail, then refresh the folder view."
|
2010-04-09 21:53:26 +02:00
|
|
|
(interactive)
|
2010-04-22 23:46:15 +02:00
|
|
|
(notmuch-poll)
|
2010-04-09 21:53:26 +02:00
|
|
|
(notmuch-folder))
|
|
|
|
|
2009-11-27 14:30:08 +01:00
|
|
|
;;;###autoload
|
2009-11-21 20:59:00 +01:00
|
|
|
(defun notmuch-folder ()
|
|
|
|
"Show the notmuch folder view and update the displayed counts."
|
|
|
|
(interactive)
|
|
|
|
(let ((buffer (get-buffer-create "*notmuch-folders*")))
|
|
|
|
(switch-to-buffer buffer)
|
|
|
|
(let ((inhibit-read-only t)
|
|
|
|
(n (line-number-at-pos)))
|
|
|
|
(erase-buffer)
|
|
|
|
(notmuch-folder-mode)
|
|
|
|
(notmuch-folder-add notmuch-folders)
|
|
|
|
(goto-char (point-min))
|
|
|
|
(goto-line n))))
|
|
|
|
|
2009-10-31 09:04:01 +01:00
|
|
|
(provide 'notmuch)
|