Function: gnus-button-openpgp
gnus-button-openpgp is a byte-compiled function defined in
gnus-art.el.gz.
Signature
(gnus-button-openpgp URL)
Documentation
Retrieve and add an OpenPGP key given URL from an OpenPGP header.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-art.el.gz
(defun gnus-button-openpgp (url)
"Retrieve and add an OpenPGP key given URL from an OpenPGP header."
(with-temp-buffer
(mm-url-insert-file-contents-external url)
(pgg-snarf-keys-region (point-min) (point-max))
(pgg-display-output-buffer nil nil nil)))