Function: mml-secure-message-encrypt-pgpmime

mml-secure-message-encrypt-pgpmime is an interactive and byte-compiled function defined in mml-sec.el.gz.

Signature

(mml-secure-message-encrypt-pgpmime &optional DONTSIGN)

Documentation

Add MML tag to encrypt and sign the entire message.

If called with a prefix argument, only encrypt (do NOT sign).

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/mml-sec.el.gz
(defun mml-secure-message-encrypt-pgpmime (&optional dontsign)
  "Add MML tag to encrypt and sign the entire message.
If called with a prefix argument, only encrypt (do NOT sign)."
  (interactive "P" mml-mode)
  (mml-secure-message "pgpmime" (if dontsign 'encrypt 'signencrypt)))