diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-12-15 07:43:13 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-12-15 07:43:13 +0100 |
commit | 1c3ee27c4648d852ebd478d9b97b5fb60cdbc549 (patch) | |
tree | 6194140b40ae7f7fee79d2bd265b395c5fad0fec /doc/en/weechat_user.en.asciidoc | |
parent | 02439b01821d45faf4bc04f8367d439a49db4e9c (diff) | |
download | weechat-1c3ee27c4648d852ebd478d9b97b5fb60cdbc549.zip |
doc: remove SASL mechanism "dh-blowfish" from docs
Diffstat (limited to 'doc/en/weechat_user.en.asciidoc')
-rw-r--r-- | doc/en/weechat_user.en.asciidoc | 21 |
1 files changed, 5 insertions, 16 deletions
diff --git a/doc/en/weechat_user.en.asciidoc b/doc/en/weechat_user.en.asciidoc index b21cb88ea..0c1597080 100644 --- a/doc/en/weechat_user.en.asciidoc +++ b/doc/en/weechat_user.en.asciidoc @@ -2166,11 +2166,15 @@ For more information, look at http://www.oftc.net/oftc/NickServ/CertFP WeeChat supports SASL authentication, using different mechanisms: -* 'plain': plain text password +* 'plain': plain text password (default) * 'dh-blowfish': blowfish encrypted password * 'dh-aes': AES encrypted password * 'external': client side SSL cert +[NOTE] +The "gcrypt" library is required when compiling WeeChat in order to use +"dh-blowfish" and "dh-aes" mechanisms (see <<dependencies,dependencies>>). + Options in servers are: * 'sasl_mechanism': mechanism to use (see above) @@ -2178,16 +2182,6 @@ Options in servers are: * 'sasl_username': username (nick) * 'sasl_password': password -If you want to use "dh-blowfish" by default for all servers: - ----- -/set irc.server_default.sasl_mechanism dh-blowfish ----- - -[NOTE] -The "gcrypt" library is required when compiling WeeChat in order to use -"dh-blowfish" and "dh-aes" mechanisms (see <<dependencies,dependencies>>). - [[irc_tor_freenode]] ==== Connect to Freenode with TOR/SASL @@ -2195,10 +2189,6 @@ In addition to SSL, Freenode servers support connections with TOR (https://www.torproject.org/), a network of virtual tunnels that allows people and groups to improve their privacy and security on the Internet. -First, make sure to have WeeChat compiled with <<dependencies,libgcrypt11-dev>> -(if built from sources); it's not mandatory, but "dh-blowfish" ensures stronger -security compared to "plain" authentication system with SASL. - In first place, install TOR. For Debian (and derived): ---- @@ -2227,7 +2217,6 @@ Set proxy for TOR: Set SASL authentication: ---- -/set irc.server.freenode-tor.sasl_mechanism dh-blowfish /set irc.server.freenode-tor.sasl_username "your_nickname" /set irc.server.freenode-tor.sasl_password "your_password" ---- |