Function: mh-mml-secure-message-sign
mh-mml-secure-message-sign is an autoloaded, interactive and
byte-compiled function defined in mh-mime.el.gz.
Signature
(mh-mml-secure-message-sign METHOD)
Documentation
Add tag to sign the message.
A proper multipart message is created for you when you send the
message. Use the command M-x mh-mml-unsecure-message (mh-mml-unsecure-message) to remove
this tag. Use a prefix argument METHOD to be prompted for one of
the possible security methods (see mh-mml-method-default).
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/mh-e/mh-mime.el.gz
;;;###mh-autoload
(defun mh-mml-secure-message-sign (method)
"Add tag to sign the message.
A proper multipart message is created for you when you send the
message. Use the command \\[mh-mml-unsecure-message] to remove
this tag. Use a prefix argument METHOD to be prompted for one of
the possible security methods (see `mh-mml-method-default')."
(interactive (list (mh-mml-query-cryptographic-method)))
(mh-secure-message method "sign" mh-identity-pgg-default-user-id))