diff options
author | Matthias Andree <matthias.andree@gmx.de> | 2021-01-30 14:15:10 +0100 |
---|---|---|
committer | Matthias Andree <matthias.andree@gmx.de> | 2021-01-30 14:20:45 +0100 |
commit | a00157c59640cbc341e0d4110d4e853c3da20908 (patch) | |
tree | beb3369c26b554eda37693bbab449d39b582a9de /fetchmail.man | |
parent | 1df193714c62e6b12f1b8f1dab10fd23b6d06e51 (diff) | |
download | fetchmail-a00157c59640cbc341e0d4110d4e853c3da20908.tar.gz fetchmail-a00157c59640cbc341e0d4110d4e853c3da20908.tar.bz2 fetchmail-a00157c59640cbc341e0d4110d4e853c3da20908.zip |
--version: print default cert paths, and document SSL_CERT_* in manpage
When Gene Heskett was updating his OpenSSL on Debian oldstable, we figured
that it might be helpful to print where OpenSSL goes look for the trusted
certificate. Add this information.
Also add documentation of OpenSSL's SSL_CERT_DIR/SSL_CERT_FILE environment
variables.
Diffstat (limited to 'fetchmail.man')
-rw-r--r-- | fetchmail.man | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/fetchmail.man b/fetchmail.man index d562788c..c32cada8 100644 --- a/fetchmail.man +++ b/fetchmail.man @@ -2940,6 +2940,25 @@ and HOME_ETC will be ignored. socks library to find out which configuration file it should read. Set this to /dev/null to bypass the SOCKS proxy. +.IP \fBSSL_CERT_DIR\fP +(with truly OpenSSL 1.1.1 compatible library): overrides OpenSSL's idea +of the default trust directory or path (which contains individual certificate +files and hashed symlinks), see the SSL_CTX_set_default_verify_paths(3) +manual page for details, it may be in the openssl development package. +If using another library's OpenSSL compatibility interface, this may not work. +Since this variable only specifies a default value, the option \-\-sslcertpath +takes precedence if given. + +.IP \fBSSL_CERT_FILE\fP +(with truly OpenSSL 1.1.1 compatible library): overrides OpenSSL's idea +of the default trust certificate bundle file (which contains a concatenation +of base64-encoded certificates in PEM format), see the +SSL_CTX_set_default_verify_paths(3) manual page +for details, it may be in the openssl development package. +If using another library's OpenSSL compatibility interface, this may not work. +Since this variable only specifies a default value, the option \-\-sslcertfile +takes precedence if given. + .SH SIGNALS If a \fBfetchmail\fP daemon is running as root, SIGUSR1 wakes it up from its sleep phase and forces a poll of all non-skipped servers. For compatibility |