Function: gnus-treat-from-gravatar
gnus-treat-from-gravatar is an autoloaded, interactive and
byte-compiled function defined in gnus-gravatar.el.gz.
Signature
(gnus-treat-from-gravatar &optional FORCE)
Documentation
Display gravatar in the From header.
If gravatar is already displayed, remove it.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/gnus-gravatar.el.gz
;;;###autoload
(defun gnus-treat-from-gravatar (&optional force)
"Display gravatar in the From header.
If gravatar is already displayed, remove it."
(interactive "p" gnus-article-mode gnus-summary-mode)
(gnus-with-article-buffer
(if (memq 'from-gravatar gnus-article-wash-types)
(gnus-delete-images 'from-gravatar)
(gnus-gravatar-transform-address "from" 'from-gravatar force))))