Function: mh-mml-secure-message-signencrypt

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

Signature

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

Documentation

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