Function: mairix-search-from-this-article
mairix-search-from-this-article is an autoloaded, interactive and
byte-compiled function defined in mairix.el.gz.
Signature
(mairix-search-from-this-article THREADS)
Documentation
Search messages from sender of the current article.
This is effectively a shortcut for calling mairix-search with
f:current_from. If prefix THREADS is non-nil, include whole
threads.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/net/mairix.el.gz
;;;###autoload
(defun mairix-search-from-this-article (threads)
"Search messages from sender of the current article.
This is effectively a shortcut for calling `mairix-search' with
f:current_from. If prefix THREADS is non-nil, include whole
threads."
(interactive "P")
(let ((get-mail-header
(cadr (assq mairix-mail-program mairix-get-mail-header-functions))))
(if get-mail-header
(mairix-search
(format "f:%s"
(mail-strip-quoted-names
(funcall get-mail-header "from")))
threads)
(error "No function for obtaining mail header specified"))))