From be9761bc5e47f7395174fd8837cc3abae8142b1f Mon Sep 17 00:00:00 2001 From: Stefan Kangas Date: Mon, 23 Oct 2023 23:59:29 +0200 Subject: [PATCH] Prefer HTTPS to HTTP for Google Groups * lisp/gnus/nnweb.el (nnweb-type-definition): Prefer HTTPS to HTTP when accessing Google Groups. --- lisp/gnus/nnweb.el | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/lisp/gnus/nnweb.el b/lisp/gnus/nnweb.el index d3bf138edeb..779ec911682 100644 --- a/lisp/gnus/nnweb.el +++ b/lisp/gnus/nnweb.el @@ -46,24 +46,24 @@ Valid types include `google', `dejanews', and `gmane'.") (defvar nnweb-type-definition '((google - (id . "http://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source") - (result . "http://groups.google.com/group/%s/msg/%s?dmode=source") + (id . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source") + (result . "https://groups.google.com/group/%s/msg/%s?dmode=source") (article . nnweb-google-wash-article) (reference . identity) (map . nnweb-google-create-mapping) (search . nnweb-google-search) - (address . "http://groups.google.com/groups") - (base . "http://groups.google.com") + (address . "https://groups.google.com/groups") + (base . "https://groups.google.com") (identifier . nnweb-google-identity)) (dejanews ;; alias of google - (id . "http://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source") - (result . "http://groups.google.com/group/%s/msg/%s?dmode=source") + (id . "https://www.google.com/groups?as_umsgid=%s&hl=en&dmode=source") + (result . "https://groups.google.com/group/%s/msg/%s?dmode=source") (article . nnweb-google-wash-article) (reference . identity) (map . nnweb-google-create-mapping) (search . nnweb-google-search) - (address . "http://groups.google.com/groups") - (base . "http://groups.google.com") + (address . "https://groups.google.com/groups") + (base . "https://groups.google.com") (identifier . nnweb-google-identity)) (gmane (article . nnweb-gmane-wash-article) -- 2.39.2