Function: rmail-summary-sort-by-recipient

rmail-summary-sort-by-recipient is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-sort-by-recipient REVERSE)

Documentation

Sort messages of current Rmail summary by recipient.

This uses either the "To" or "Apparently-To" header, downcased. 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-recipient (reverse)
  "Sort messages of current Rmail summary by recipient.
This uses either the \"To\" or \"Apparently-To\" header, downcased.
If prefix argument REVERSE is non-nil, sorts in reverse order."
  (interactive "P")
  (rmail-sort-from-summary (function rmail-sort-by-recipient) reverse))