Reject invalid SSL/TLS certificates
This commit is contained in:
parent
ca2ce63ae0
commit
7296051d56
1 changed files with 11 additions and 0 deletions
|
@ -1020,6 +1020,17 @@
|
|||
(setq electric-pair-skip-whitespace 'chomp)
|
||||
#+END_SRC
|
||||
|
||||
* Reject SSL/TLS certificates that don't check out
|
||||
|
||||
You just can't trust the internet. And I'd prefer to know if
|
||||
something goes wrong.
|
||||
|
||||
#+BEGIN_SRC emacs-lisp
|
||||
(defvar gnutls-verify-error)
|
||||
|
||||
(setq gnutls-verify-error t)
|
||||
#+END_SRC
|
||||
|
||||
* Programming
|
||||
|
||||
Emacs is a real programmer's editor, especially so because it's so
|
||||
|
|
Loading…
Reference in a new issue