From 1ef01fa9ffc2d6b9bd0aa47b529e74bcd97c9605 Mon Sep 17 00:00:00 2001 From: David Florness Date: Sun, 28 Aug 2022 16:54:00 -0400 Subject: [PATCH] Only send User-Agent in HTTP requests The User-Agent header is needed for the forge package to connect to GitHub. --- init.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/init.el b/init.el index 3aa4b69..cbdc96c 100644 --- a/init.el +++ b/init.el @@ -51,7 +51,8 @@ '(fill-column 80) '(initial-buffer-choice t) '(initial-scratch-message "") - '(url-privacy-level (quote paranoid)) + ;; only send User-Agent + '(url-privacy-level '(email os emacs lastloc cookies)) '(make-backup-files nil)) (custom-set-faces ;; custom-set-faces was added by Custom. -- 2.38.4