Function: mh-folder-save-mime-part

mh-folder-save-mime-part is an autoloaded, interactive and byte-compiled function defined in mh-mime.el.gz.

Signature

(mh-folder-save-mime-part PART-INDEX)

Documentation

Save (output) attachment.

This command saves the attachment associated with the button under the cursor. If the cursor is not located over a button, then the cursor first moves to the next button, wrapping to the beginning of the message if necessary.

You can also provide a numeric prefix argument PART-INDEX to save the attachment labeled with that number.

This command prompts you for a filename and suggests a specific name if it is available.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
;;;###mh-autoload
(defun mh-folder-save-mime-part (part-index)
  "Save (output) attachment.

This command saves the attachment associated with the button under the
cursor. If the cursor is not located over a button, then the cursor
first moves to the next button, wrapping to the beginning of the
message if necessary.

You can also provide a numeric prefix argument PART-INDEX to save the
attachment labeled with that number.

This command prompts you for a filename and suggests a specific name
if it is available."
  (interactive "P")
  (when (consp part-index) (setq part-index (car part-index)))
  (mh-folder-mime-action part-index #'mh-mime-save-part nil))