diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-12 20:39:40 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-12 20:39:40 +0200 |
commit | c588ee21bc8fd33678893d5c67616033281032e3 (patch) | |
tree | 6b082610e625ca846417043edc1297e1b404cd41 /doc/en/includes/autogen_user_options.en.adoc | |
parent | b7112e409060160ccb865c7a749579d18b914110 (diff) | |
download | weechat-c588ee21bc8fd33678893d5c67616033281032e3.zip |
core: improve options to load GnuTLS system/user CAs (closes #972)
Changes:
* new option: weechat.network.gnutls_ca_system
* option weechat.network.gnutls_ca_file renamed to
weechat.network.gnutls_ca_user
* reload certificates when options are changed
* remove build option CA_FILE
Diffstat (limited to 'doc/en/includes/autogen_user_options.en.adoc')
-rw-r--r-- | doc/en/includes/autogen_user_options.en.adoc | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/doc/en/includes/autogen_user_options.en.adoc b/doc/en/includes/autogen_user_options.en.adoc index ec443d0b4..b799bb0bb 100644 --- a/doc/en/includes/autogen_user_options.en.adoc +++ b/doc/en/includes/autogen_user_options.en.adoc @@ -1260,11 +1260,17 @@ ** values: 1 .. 2147483647 ** default value: `+60+` -* [[option_weechat.network.gnutls_ca_file]] *weechat.network.gnutls_ca_file* -** description: pass:none[file containing the certificate authorities (path is evaluated, see function string_eval_path_home in plugin API reference)] +* [[option_weechat.network.gnutls_ca_system]] *weechat.network.gnutls_ca_system* +** description: pass:none[load system's default trusted certificate authorities on startup; this can be turned off to save some memory only if you are not using SSL connections at all] +** type: boolean +** values: on, off +** default value: `+on+` + +* [[option_weechat.network.gnutls_ca_user]] *weechat.network.gnutls_ca_user* +** description: pass:none[extra file(s) with certificate authorities; multiple files must be separated by colons (each path is evaluated, see function string_eval_path_home in plugin API reference)] ** type: string ** values: any string -** default value: `+"/etc/ssl/certs/ca-certificates.crt"+` +** default value: `+""+` * [[option_weechat.network.gnutls_handshake_timeout]] *weechat.network.gnutls_handshake_timeout* ** description: pass:none[timeout (in seconds) for gnutls handshake] |