[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Special configuration needed for eww + gnutls? [emacs 28.1]
From: |
Kaushal Modi |
Subject: |
Re: Special configuration needed for eww + gnutls? [emacs 28.1] |
Date: |
Fri, 15 Apr 2022 12:53:51 -0400 |
On Thu, Apr 14, 2022 at 10:04 PM Jude DaShiell <jdashiel@panix.com> wrote:
>
> have you got this in one of your initialization files:
> (setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
No, gnutls-algorithm-priority is nil at its default value.
If I evaluate this in an emacs -Q session:
(progn
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.3")
(eww "https://scripter.co";))
I see the eww buffer pop up but then stay stuck at "Contacting host:
scripter.co:443".
And if I evaluate
(progn
(setq gnutls-algorithm-priority "NORMAL:-VERS-TLS1.2")
(eww "https://scripter.co";))
I see
Contacting host: scripter.co:443
#<buffer *http scripter.co:443*-871644>
gnutls.c: [0] (Emacs) Received alert: Error in protocol version
If this info is useful, pkg-config --modversion gnutls returns 3.3.29.
(and so C-h v libgnutls-version also returns 30329).
Does this work for you in an emacs -Q session?
(eww "https://scripter.co";)
Thanks!