Function: rmail-summary-output-menu
rmail-summary-output-menu is an interactive and byte-compiled function
defined in rmailsum.el.gz.
Signature
(rmail-summary-output-menu)
Documentation
Output current message to another Rmail file, chosen with a menu.
Also set the default for subsequent M-x rmail-output-to-babyl-file (rmail-output-to-babyl-file) commands.
The variables rmail-secondary-file-directory and
rmail-secondary-file-regexp control which files are offered in the menu.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mail/rmailsum.el.gz
(defun rmail-summary-output-menu ()
"Output current message to another Rmail file, chosen with a menu.
Also set the default for subsequent \\[rmail-output-to-babyl-file] commands.
The variables `rmail-secondary-file-directory' and
`rmail-secondary-file-regexp' control which files are offered in the menu."
(interactive)
(with-current-buffer rmail-buffer
(let ((rmail-delete-after-output nil))
(call-interactively 'rmail-output-menu)))
(if rmail-delete-after-output
(rmail-summary-delete-forward nil)))