Function: rmail-summary-retry-failure

rmail-summary-retry-failure is an interactive and byte-compiled function defined in rmailsum.el.gz.

Signature

(rmail-summary-retry-failure)

Documentation

Edit a mail message which is based on the contents of the current message.

For a message rejected by the mail system, extract the interesting headers and the body of the original message; otherwise copy the current message.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-retry-failure ()
  "Edit a mail message which is based on the contents of the current message.
For a message rejected by the mail system, extract the interesting headers and
the body of the original message; otherwise copy the current message."
  (interactive)
  (let ((window (get-buffer-window rmail-buffer)))
    (if window
	(select-window window)
      (set-buffer rmail-buffer)))
  (rmail-retry-failure)
  (rmail-summary-override-mail-send-and-exit))