summaryrefslogtreecommitdiff
path: root/doc/en/weechat_faq.en.adoc
diff options
context:
space:
mode:
Diffstat (limited to 'doc/en/weechat_faq.en.adoc')
-rw-r--r--doc/en/weechat_faq.en.adoc30
1 files changed, 15 insertions, 15 deletions
diff --git a/doc/en/weechat_faq.en.adoc b/doc/en/weechat_faq.en.adoc
index e8f6588e4..44a093729 100644
--- a/doc/en/weechat_faq.en.adoc
+++ b/doc/en/weechat_faq.en.adoc
@@ -691,8 +691,8 @@ you have to use kbd:[Alt] instead of kbd:[Shift]).
[[irc]]
== IRC
-[[irc_ssl_connection]]
-=== I have some problems when connecting to a server using SSL, what can I do?
+[[irc_tls_connection]]
+=== I have some problems when connecting to a server using TLS, what can I do?
If you are using macOS, you must install `openssl` from Homebrew.
A CA file will be bootstrapped using certificates from the system keychain.
@@ -701,43 +701,43 @@ If you see errors about gnutls handshake, you can try to use a smaller
Diffie-Hellman key (default is 2048):
----
-/set irc.server.example.ssl_dhkey_size 1024
+/set irc.server.example.tls_dhkey_size 1024
----
-If you see errors about certificate, you can disable "ssl_verify" (be careful,
+If you see errors about certificate, you can disable "tls_verify" (be careful,
connection will be less secure by doing that):
----
-/set irc.server.example.ssl_verify off
+/set irc.server.example.tls_verify off
----
If the server has an invalid certificate and you know what the certificate
should be, you can specify the fingerprint (SHA-512, SHA-256 or SHA-1):
----
-/set irc.server.example.ssl_fingerprint 0c06e399d3c3597511dc8550848bfd2a502f0ce19883b728b73f6b7e8604243b
+/set irc.server.example.tls_fingerprint 0c06e399d3c3597511dc8550848bfd2a502f0ce19883b728b73f6b7e8604243b
----
-[[irc_ssl_handshake_error]]
-=== When connecting to server with SSL, I only see the error "TLS handshake failed", what can I do?
+[[irc_tls_handshake_error]]
+=== When connecting to server with TLS, I only see the error "TLS handshake failed", what can I do?
You can try a different priority string, replace "xxx" by your server name:
----
-/set irc.server.xxx.ssl_priorities "NORMAL:-VERS-TLS-ALL:+VERS-TLS1.0:+VERS-SSL3.0:%COMPAT"
+/set irc.server.xxx.tls_priorities "NORMAL:-VERS-TLS-ALL:+VERS-TLS1.0:+VERS-SSL3.0:%COMPAT"
----
-[[irc_ssl_libera]]
-=== How can I connect to libera server using SSL?
+[[irc_tls_libera]]
+=== How can I connect to libera server using TLS?
Check that you have certificates installed on your system, this is commonly
provided by the package "ca-certificates".
-Setup server port, SSL, then connect:
+Setup server port, TLS, then connect:
----
/set irc.server.libera.addresses "irc.libera.chat/6697"
-/set irc.server.libera.ssl on
+/set irc.server.libera.tls on
/connect libera
----
@@ -1003,7 +1003,7 @@ Scripts are not compatible with other IRC clients.
[[scripts_update]]
=== The command "/script update" can not read scripts, how to fix that?
-First check questions about SSL connection in this FAQ.
+First check questions about TLS connection in this FAQ.
If still not working, try to manually delete the scripts file (in your shell):
@@ -1087,7 +1087,7 @@ You can try following tips to consume less memory:
fifo, logger, perl, python, ruby, lua, tcl, guile, javascript, php, spell,
xfer (used for DCC). See `/help weechat.plugin.autoload`.
* Load only scripts that you really need.
-* Do not load system certificates if SSL is *NOT* used: turn off this option:
+* Do not load system certificates if TLS is *NOT* used: turn off this option:
_weechat.network.gnutls_ca_system_.
* Reduce value of option _weechat.history.max_buffer_lines_number_ or set value
of option _weechat.history.max_buffer_lines_minutes_.