diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2010-12-06 12:00:32 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2010-12-06 12:00:32 +0100 |
commit | 2a3d3c95e5b86087d2c4e429a7bd98db5d46c30e (patch) | |
tree | c55eb413fdfc0ebebb2c22029d0d570290e91e29 /doc/it/weechat_user.it.txt | |
parent | c1b3c3bd33ea1fd938ee987513409d01fde348de (diff) | |
download | weechat-2a3d3c95e5b86087d2c4e429a7bd98db5d46c30e.zip |
Add doc about relay plugin in user guide
Diffstat (limited to 'doc/it/weechat_user.it.txt')
-rw-r--r-- | doc/it/weechat_user.it.txt | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/doc/it/weechat_user.it.txt b/doc/it/weechat_user.it.txt index 9b7ae5f39..e6470c04b 100644 --- a/doc/it/weechat_user.it.txt +++ b/doc/it/weechat_user.it.txt @@ -949,6 +949,8 @@ I plugin predefiniti sono: | fifo | pipe FIFO utilizzata per inviare comandi da remoto su WeeChat | irc | protocollo chat per IRC | logger | Registra i buffer su file +// TRANSLATION MISSING +| relay | Relay data via network (IRC proxy) | rmodifier | Cambia le stringhe del modificatore con espressioni regolari | perl | API per lo scripting in Perl | python | API per lo scripting in Python @@ -1587,6 +1589,51 @@ Si avranno i seguenti file: | #canale2.weechatlog ........................................ +// TRANSLATION MISSING +[[relay_plugin]] +Relay plugin +~~~~~~~~~~~~ + +The Relay plugin is used to relay data via network, using different protocols. + +Currently, only "irc" protocol is supported (IRC proxy). + +[[relay_options]] +Opzioni (relay.conf) +^^^^^^^^^^^^^^^^^^^^ + +include::autogen/user/relay_options.txt[] + +[[relay_commands]] +Comandi +^^^^^^^ + +include::autogen/user/relay_commands.txt[] + +// TRANSLATION MISSING +[[relay_irc_proxy]] +IRC proxy +^^^^^^^^^ + +The Relay plugin can act as an IRC proxy: you can define one port by IRC server +and use a password for clients. + +For example: + +---------------------------------------- +/set relay.network.password "mypass" +/relay add irc.freenode 8000 +---------------------------------------- + +Now you can connect on port 8000 with any IRC client (WeeChat, xchat, +irssi, ..), using server password "mypass". + +You can limit number of allowed clients: + +---------------------------------------- +/set relay.network.max_clients 1 +---------------------------------------- + [[rmodifier_plugin]] Plugin Rmodifier ~~~~~~~~~~~~~~~~ |