Function: smime-mode

smime-mode is an interactive and byte-compiled function defined in smime.el.gz.

Signature

(smime-mode)

Documentation

Major mode for browsing, viewing and fetching certificates.

All normal editing commands are switched off.

The following commands are available:

- negative-argument
0 digit-argument
1 digit-argument
2 digit-argument
3 digit-argument
4 digit-argument
5 digit-argument
6 digit-argument
7 digit-argument
8 digit-argument
9 digit-argument
SPC..~ undefined
f smime-certificate-info
q smime-exit

This mode runs the hook smime-mode-hook, as the final or penultimate step during initialization.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/gnus/smime.el.gz
(define-derived-mode smime-mode fundamental-mode ;special-mode
  "SMIME"
  "Major mode for browsing, viewing and fetching certificates.

All normal editing commands are switched off.
\\<smime-mode-map>

The following commands are available:

\\{smime-mode-map}"
  (setq mode-line-process nil)
  (buffer-disable-undo)
  (setq truncate-lines t)
  (setq buffer-read-only t))