Variable: gravatar-cache-ttl
gravatar-cache-ttl is a customizable variable defined in
gravatar.el.gz.
This variable is obsolete since 28.1.
Value
2592000
Documentation
Time to live in seconds for gravatar cache entries.
If a requested gravatar has been cached for longer than this, it is retrieved anew. The default value is 30 days.
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-cache-ttl 2592000
"Time to live in seconds for gravatar cache entries.
If a requested gravatar has been cached for longer than this, it
is retrieved anew. The default value is 30 days."
:type 'natnum
;; Restricted :type to number of seconds.
:version "27.1"
:group 'gravatar)