Function: gnus-summary-limit-to-recipient
gnus-summary-limit-to-recipient is an interactive and byte-compiled
function defined in gnus-sum.el.gz.
Signature
(gnus-summary-limit-to-recipient RECIPIENT &optional NOT-MATCHING)
Documentation
Limit the summary buffer to articles with the given RECIPIENT.
If NOT-MATCHING, exclude RECIPIENT.
To and Cc headers are checked. You need to include them in
nnmail-extra-headers.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-sum.el.gz
(defun gnus-summary-limit-to-recipient (recipient &optional not-matching)
"Limit the summary buffer to articles with the given RECIPIENT.
If NOT-MATCHING, exclude RECIPIENT.
To and Cc headers are checked. You need to include them in
`nnmail-extra-headers'."
;; Unlike `rmail-summary-by-recipients', doesn't include From.
(interactive
(list
(read-string
(format "%s recipient (regexp): "
(if current-prefix-arg "Exclude" "Limit to")))
current-prefix-arg)
gnus-summary-mode)
(when (not (equal "" recipient))
(prog1 (let* ((to
(if (memq 'To nnmail-extra-headers)
(gnus-summary-find-matching
(cons 'extra 'To) recipient 'all nil nil
not-matching)
(gnus-message
1 "`To' isn't present in `nnmail-extra-headers'")
(sit-for 1)
nil))
(cc
(if (memq 'Cc nnmail-extra-headers)
(gnus-summary-find-matching
(cons 'extra 'Cc) recipient 'all nil nil
not-matching)
(gnus-message
1 "`Cc' isn't present in `nnmail-extra-headers'")
(sit-for 1)
nil))
(articles
(if not-matching
;; We need the numbers that are in both lists:
(mapcar (lambda (a)
(and (memq a to) a))
cc)
(nconc to cc))))
(unless (or articles not-matching)
(error "Found no matches for \"%s\"" recipient))
(gnus-summary-limit articles))
(gnus-summary-position-point))))