Function: rmail-summary-sort-by-correspondent
rmail-summary-sort-by-correspondent is an interactive and
byte-compiled function defined in rmailsum.el.gz.
Signature
(rmail-summary-sort-by-correspondent REVERSE)
Documentation
Sort messages of current Rmail summary by other correspondent.
This uses either the "From", "Sender", "To", or
"Apparently-To" header, downcased. Uses the first header not
excluded by mail-dont-reply-to-names. If prefix argument
REVERSE is non-nil, sorts in reverse order.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-sort-by-correspondent (reverse)
"Sort messages of current Rmail summary by other correspondent.
This uses either the \"From\", \"Sender\", \"To\", or
\"Apparently-To\" header, downcased. Uses the first header not
excluded by `mail-dont-reply-to-names'. If prefix argument
REVERSE is non-nil, sorts in reverse order."
(interactive "P")
(rmail-sort-from-summary (function rmail-sort-by-correspondent) reverse))