diff options
author | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-30 16:02:11 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-09-30 16:02:11 +0200 |
commit | a80cfb74730da99b776c2ee7342d522840dd3456 (patch) | |
tree | 8eb672128b216a1f4be7a42fde197017dc33edf9 /lisp | |
parent | b51a06f24d1b239cf6cec824f3a4c967642a7598 (diff) | |
download | emacs-a80cfb74730da99b776c2ee7342d522840dd3456.tar.gz emacs-a80cfb74730da99b776c2ee7342d522840dd3456.tar.bz2 emacs-a80cfb74730da99b776c2ee7342d522840dd3456.zip |
Make gnus-user-agent less verbose
* lisp/gnus/gnus.el (gnus-user-agent): Don't include the Emacs/OS
version for privacy reasons (bug#58171).
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/gnus.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 64fc91ccfff..778a46dab37 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -2235,7 +2235,7 @@ Disabling the agent may result in noticeable loss of performance." (symbol :tag "Parameter") (sexp :tag "Value")))) -(defcustom gnus-user-agent '(emacs gnus type) +(defcustom gnus-user-agent '(gnus) "Which information should be exposed in the User-Agent header. Can be a list of symbols or a string. Valid symbols are `gnus' @@ -2243,7 +2243,7 @@ Can be a list of symbols or a string. Valid symbols are `gnus' addition to the Emacs version, you can add `config' (show system configuration) or `type' (show system type). If you set it to a string, be sure to use a valid format, see RFC 2616." - :version "22.1" + :version "29.1" :group 'gnus-message :type '(choice (list (set :inline t (const :value gnus :tag "Gnus version") |