Function: mh-mml-secure-message-encrypt

mh-mml-secure-message-encrypt is an autoloaded, interactive and byte-compiled function defined in mh-mime.el.gz.

Signature

(mh-mml-secure-message-encrypt METHOD)

Documentation

Add tag to encrypt 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-encrypt (method)
  "Add tag to encrypt 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 "encrypt" mh-identity-gpg-default-user-id))