Function: mh-mh-compose-anon-ftp
mh-mh-compose-anon-ftp is an autoloaded, interactive and byte-compiled
function defined in mh-mime.el.gz.
Signature
(mh-mh-compose-anon-ftp HOST FILENAME TYPE DESCRIPTION)
Documentation
Add tag to include anonymous ftp reference to a file.
You can have your message initiate an "ftp" transfer when the recipient reads the message. You are prompted for the remote HOST and FILENAME, the media TYPE, and the content DESCRIPTION.
See also M-x mh-mh-to-mime (mh-mh-to-mime).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
;;;###mh-autoload
(defun mh-mh-compose-anon-ftp (host filename type description)
"Add tag to include anonymous ftp reference to a file.
You can have your message initiate an \"ftp\" transfer when the
recipient reads the message. You are prompted for the remote HOST
and FILENAME, the media TYPE, and the content DESCRIPTION.
See also \\[mh-mh-to-mime]."
(interactive (list
(read-string "Remote host: ")
(read-string "Remote filename: ")
(mh-minibuffer-read-type "DUMMY-FILENAME")
(mml-minibuffer-read-description)))
(mh-mh-compose-external-type "anon-ftp" host filename
type description))