Variable: gravatar-default-image
gravatar-default-image is a customizable variable defined in
gravatar.el.gz.
Value
"404"
Documentation
Default gravatar to use when none match the request.
This happens when no gravatar satisfying gravatar-rating exists
for a given email address. The following options are supported:
nil - Default placeholder.
"404" - No placeholder.
"mp" - Mystery Person: generic avatar outline.
"identicon" - Geometric pattern based on email address.
"monsterid" - Generated "monster" with different colors, faces, etc.
"wavatar" - Generated faces with different features and backgrounds.
"retro" - Generated 8-bit arcade-style pixelated faces.
"robohash" - Generated robot with different colors, faces, etc.
"blank" - Transparent PNG image.
URL - Custom image URL.
This variable was added, or its default value changed, in Emacs 27.1.
Probably introduced at or before Emacs version 27.1.
Source Code
;; Defined in /usr/src/emacs/lisp/image/gravatar.el.gz
(defcustom gravatar-default-image "404"
"Default gravatar to use when none match the request.
This happens when no gravatar satisfying `gravatar-rating' exists
for a given email address. The following options are supported:
nil - Default placeholder.
\"404\" - No placeholder.
\"mp\" - Mystery Person: generic avatar outline.
\"identicon\" - Geometric pattern based on email address.
\"monsterid\" - Generated \"monster\" with different colors, faces, etc.
\"wavatar\" - Generated faces with different features and backgrounds.
\"retro\" - Generated 8-bit arcade-style pixelated faces.
\"robohash\" - Generated robot with different colors, faces, etc.
\"blank\" - Transparent PNG image.
URL - Custom image URL."
:type '(choice (const :tag "Default" nil)
(const :tag "None" "404")
(const :tag "Mystery person" "mp")
(const :tag "Geometric patterns" "identicon")
(const :tag "Monsters" "monsterid")
(const :tag "Faces" "wavatar")
(const :tag "Retro" "retro")
(const :tag "Robots" "robohash")
(const :tag "Blank" "blank")
(string :tag "Custom URL"))
:version "27.1"
:group 'gravatar)