Function: nnmairix-search-from-this-article
nnmairix-search-from-this-article is an interactive and byte-compiled
function defined in nnmairix.el.gz.
Signature
(nnmairix-search-from-this-article)
Documentation
Search messages from sender of the current article.
This is effectively a shortcut for calling nnmairix-search with
f:current_from.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/nnmairix.el.gz
(defun nnmairix-search-from-this-article ()
"Search messages from sender of the current article.
This is effectively a shortcut for calling `nnmairix-search' with
f:current_from."
(interactive)
(let* ((server
(nnmairix-backend-to-server gnus-current-select-method))
from)
(if server
(if (gnus-buffer-live-p gnus-article-buffer)
(progn
(with-current-buffer gnus-article-buffer
(gnus-summary-toggle-header 1)
(setq from (cadr (gnus-extract-address-components
(gnus-fetch-field "From"))))
(nnmairix-search (concat "f:" from) server -1)))
(message "No article buffer."))
(error "No nnmairix server found for back end %s:%s"
(symbol-name (car gnus-current-select-method))
(nth 1 gnus-current-select-method)))))