Variable: gravatar-service

gravatar-service is a customizable variable defined in gravatar.el.gz.

Value

gravatar

Documentation

Symbol denoting gravatar-like service to use.

Note that certain services might ignore other options, such as gravatar-default-image or certain values as with gravatar-rating.

Note that libravatar' has security implications: It can be used to track whether you're reading a specific mail.

This variable was added, or its default value changed, in Emacs 28.1.

Probably introduced at or before Emacs version 28.1.

Source Code

;; Defined in /usr/src/emacs/lisp/image/gravatar.el.gz
(defcustom gravatar-service 'gravatar
  "Symbol denoting gravatar-like service to use.
Note that certain services might ignore other options, such as
`gravatar-default-image' or certain values as with
`gravatar-rating'.

Note that `'libravatar' has security implications: It can be used
to track whether you're reading a specific mail."
  :type `(choice ,@(mapcar (lambda (s) `(const ,(car s)))
                           gravatar-service-alist))
  :version "28.1"
  :link '(url-link "https://www.libravatar.org/")
  :link '(url-link "https://unicornify.pictures/")
  :link '(url-link "https://gravatar.com/")
  :group 'gravatar)