Variable: network-stream-use-client-certificates

network-stream-use-client-certificates is a customizable variable defined in network-stream.el.gz.

Value

nil

Documentation

Whether to use client certificates for network connections.

When non-nil, open-network-stream will automatically look for matching client certificates (via auth-source) for a destination server, if it is called without a :client-certificate keyword.

Set to nil to disable this lookup globally. To disable on a per-connection basis, specify :client-certificate nil when calling open-network-stream.

This variable was added, or its default value changed, in Emacs 27.1.

View in manual

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/network-stream.el.gz
(defcustom network-stream-use-client-certificates nil
  "Whether to use client certificates for network connections.

When non-nil, `open-network-stream' will automatically look for
matching client certificates (via `auth-source') for a
destination server, if it is called without a :client-certificate
keyword.

Set to nil to disable this lookup globally.  To disable on a
per-connection basis, specify `:client-certificate nil' when
calling `open-network-stream'."
  :group 'network
  :type 'boolean
  :version "27.1")