Variable: mairix-saved-searches

mairix-saved-searches is a customizable variable defined in mairix.el.gz.

Value

nil

Documentation

Saved mairix searches.

The entries are: Name of the search, Mairix query string, Name of the file (nil: use mairix-search-file as default), Search whole threads (nil or t). Note that the file will be prefixed by mairix-file-path.

Source Code

;; Defined in /usr/src/emacs/lisp/net/mairix.el.gz
(defcustom mairix-saved-searches nil
  "Saved mairix searches.
The entries are: Name of the search, Mairix query string, Name of
the file (nil: use `mairix-search-file' as default), Search whole
threads (nil or t).  Note that the file will be prefixed by
`mairix-file-path'."
  :type '(repeat (list (string :tag "Name")
		       (string :tag "Query")
		       (choice :tag "File"
			       (const :tag "default")
			       file)
		       (boolean :tag "Threads"))))