Function: rmail-summary-sort-by-author

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

Signature

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

Documentation

Sort messages of current Rmail summary by author.

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