Variable: nsm-trust-local-network

nsm-trust-local-network is a customizable variable defined in nsm.el.gz.

Value

nil

Documentation

Disable warnings when visiting trusted hosts on local networks.

The default suite of TLS checks in NSM is designed to follow the most current security best practices. Under some situations, such as attempting to connect to an email server that does not follow these practices inside a school or corporate network, NSM may produce warnings for such occasions. Setting this option to a non-nil value, or a zero-argument function that returns non-nil, tells NSM to skip checking for potential TLS vulnerabilities when connecting to hosts on a local network.

Make sure you know what you are doing before enabling this option.

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

Probably introduced at or before Emacs version 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/net/nsm.el.gz
(defcustom nsm-trust-local-network nil
  "Disable warnings when visiting trusted hosts on local networks.

The default suite of TLS checks in NSM is designed to follow the
most current security best practices.  Under some situations,
such as attempting to connect to an email server that does not
follow these practices inside a school or corporate network, NSM
may produce warnings for such occasions.  Setting this option to
a non-nil value, or a zero-argument function that returns non-nil,
tells NSM to skip checking for potential TLS vulnerabilities when
connecting to hosts on a local network.

Make sure you know what you are doing before enabling this
option."
  :version "27.1"
  :type '(choice (const :tag "On" t)
                 (const :tag "Off" nil)
                 (function :tag "Custom function")))