diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-28 13:37:31 +0200 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2021-05-28 13:37:31 +0200 |
commit | 1181ab454e31a5f8c47fb337da572b744d934a88 (patch) | |
tree | 019b8dca141847996b1e71e2abc70459597fe013 /doc/pl/weechat_user.pl.adoc | |
parent | c676148a63f351275db7ec2f0634f09a11f996fd (diff) | |
download | weechat-1181ab454e31a5f8c47fb337da572b744d934a88.zip |
doc: use secured data in relay examples (user's guide)
Diffstat (limited to 'doc/pl/weechat_user.pl.adoc')
-rw-r--r-- | doc/pl/weechat_user.pl.adoc | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/doc/pl/weechat_user.pl.adoc b/doc/pl/weechat_user.pl.adoc index eb1805428..164dda39d 100644 --- a/doc/pl/weechat_user.pl.adoc +++ b/doc/pl/weechat_user.pl.adoc @@ -3516,10 +3516,12 @@ protokołów: [[relay_password]] ==== Hasło -Zalecane jest ustawienie hasła dla pośrednika, za pomocą komendy: +// TRANSLATION MISSING +It is highly recommended to set a password for relay, with these commands: ---- -/set relay.network.password "moje_hasło" +/secure set relay moje_hasło +/set relay.network.password "${sec.data.relay}" ---- Hasło to używane jest przez protokoły _irc_ i _weechat_. @@ -3549,7 +3551,8 @@ Musi to być ciąg zakodowany za pomocą base32, zawierajcy tylko litery i liczb na przykład: ---- -/set relay.network.totp_secret "secretpasswordbase32" +/secure set relay_totp secretpasswordbase32 +/set relay.network.totp_secret "${sec.data.relay_totp}" ---- [[relay_ssl]] @@ -3612,11 +3615,14 @@ Teraz możesz się połączyć na porcie 8000 za pomocą dowolnego klienta IRC używając hasła serwera "moje_hasło" (lub "libera:moje_hasło" jeśli żaden serwer nie został podany w przekaźniku). -Na przykład jeśli używasz WeeChat jako klienta porednika IRC, z serwerem nazwanym -"relay" i hasłem "secret", możesz ustawić hasło za pomocą tej komendy: +// TRANSLATION MISSING +For example if you use WeeChat as IRC client of the relay, with a server called +"relay" and the relay password "secret", you can setup the password with these +commands: ---- -/set irc.server.relay.password "libera:secret" +/secure set relay_libera libera:secret +/set irc.server.relay.password "{sec.data.relay_libera}" ---- [[relay_weechat_protocol]] |