Function: mairix-search
mairix-search is an autoloaded, interactive and byte-compiled function
defined in mairix.el.gz.
Signature
(mairix-search SEARCH THREADS)
Documentation
Call Mairix with SEARCH.
If THREADS is non-nil, also display whole threads of found messages. Results will be put into the default search file.
Probably introduced at or before Emacs version 31.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/mairix.el.gz
;;;; Main interactive functions
;;;###autoload
(defun mairix-search (search threads)
"Call Mairix with SEARCH.
If THREADS is non-nil, also display whole threads of found
messages. Results will be put into the default search file."
(interactive
(list
(read-string "Query: " nil 'mairix-search-history)
(y-or-n-p "Include threads? ")))
(when (mairix-call-mairix
(split-string search)
nil
threads)
(mairix-show-folder mairix-search-file)))