1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-25 10:47:00 +00:00

Don't default to librgravatar, since there are security implications

* lisp/image/gravatar.el (gravatar-service): Change the default
from libravatar, since that has privacy concerns (bug#40676).
This commit is contained in:
Lars Ingebrigtsen 2020-07-29 08:47:29 +02:00
parent db1b1f09b8
commit 28bf56b871

View File

@ -125,11 +125,14 @@ a gravatar for a given email address."
(libravatar . ,#'gravatar--service-libravatar))
"Alist of supported gravatar services.")
(defcustom gravatar-service 'libravatar
(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'."
`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"