aboutsummaryrefslogtreecommitdiffstats
path: root/doc/misc
diff options
context:
space:
mode:
authorRobert Pluim2019-11-18 10:48:29 +0100
committerRobert Pluim2019-11-23 18:51:08 +0100
commit8934762bb37273e6606097de92dcc2556456acd2 (patch)
treef221324e9e52e5cffe43929f3beb244579aa5288 /doc/misc
parenta27c8929f2ab26dc0d27c8969857d3bc108747f5 (diff)
downloademacs-8934762bb37273e6606097de92dcc2556456acd2.tar.gz
emacs-8934762bb37273e6606097de92dcc2556456acd2.zip
Default network-stream-use-client-certificates to nil
* lisp/net/network-stream.el (network-stream-use-client-certificates): Default to nil. (open-network-stream): Adapt description to new default of network-stream-use-client-certificates. * etc/NEWS: network-stream-use-client-certificates defaults to nil now. * doc/lispref/processes.texi (Network): Flip network-stream-use-client-certificates description. * doc/misc/auth.texi (Help for users): Mention network-stream-use-client-certificates.
Diffstat (limited to 'doc/misc')
-rw-r--r--doc/misc/auth.texi7
1 files changed, 6 insertions, 1 deletions
diff --git a/doc/misc/auth.texi b/doc/misc/auth.texi
index 93a301dcb1a..415a64f0211 100644
--- a/doc/misc/auth.texi
+++ b/doc/misc/auth.texi
@@ -92,6 +92,7 @@ backends and you can write your own if you want.
92@chapter Help for users 92@chapter Help for users
93 93
94``Netrc'' files are a de facto standard. They look like this: 94``Netrc'' files are a de facto standard. They look like this:
95
95@example 96@example
96machine @var{mymachine} login @var{myloginname} password @var{mypassword} port @var{myport} 97machine @var{mymachine} login @var{myloginname} password @var{mypassword} port @var{myport}
97@end example 98@end example
@@ -108,12 +109,16 @@ The @code{user} is the user name. It's known as @var{:user} in
108 109
109You can also use this file to specify client certificates to use when 110You can also use this file to specify client certificates to use when
110setting up TLS connections. The format is: 111setting up TLS connections. The format is:
112
111@example 113@example
112machine @var{mymachine} port @var{myport} key @var{key} cert @var{cert} 114machine @var{mymachine} port @var{myport} key @var{key} cert @var{cert}
113@end example 115@end example
114 116
115@var{key} and @var{cert} are filenames containing the key and 117@var{key} and @var{cert} are filenames containing the key and
116certificate to use respectively. 118certificate to use respectively. In order to make network connections
119use them automatically, either pass @code{:client-certificate t} to
120@code{open-network-stream}, or customize
121@code{network-stream-use-client-certificates} to @code{t}.
117 122
118You can use spaces inside a password or other token by surrounding the 123You can use spaces inside a password or other token by surrounding the
119token with either single or double quotes. 124token with either single or double quotes.