diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-28 15:00:39 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-02-28 15:00:39 +0100 |
commit | cf48fa4642d1a309de572ba2e5f179a9b081ab0b (patch) | |
tree | 8d119657faf0cea7a4c113e5f271d71d68515eae /doc/it/autogen/user | |
parent | 4196dcf7a5a21440974c06107013239245845859 (diff) | |
download | weechat-cf48fa4642d1a309de572ba2e5f179a9b081ab0b.zip |
irc: evaluate content of server options "username" and "realname"
Diffstat (limited to 'doc/it/autogen/user')
-rw-r--r-- | doc/it/autogen/user/irc_options.txt | 4 | ||||
-rw-r--r-- | doc/it/autogen/user/weechat_commands.txt | 56 |
2 files changed, 30 insertions, 30 deletions
diff --git a/doc/it/autogen/user/irc_options.txt b/doc/it/autogen/user/irc_options.txt index 5240d7c75..a45e81434 100644 --- a/doc/it/autogen/user/irc_options.txt +++ b/doc/it/autogen/user/irc_options.txt @@ -534,7 +534,7 @@ ** valori: qualsiasi stringa (valore predefinito: `""`) * [[option_irc.server_default.realname]] *irc.server_default.realname* -** descrizione: `nome reale da usare sul server` +** descrizione: `real name to use on server (note: content is evaluated, see /help eval)` ** tipo: stringa ** valori: qualsiasi stringa (valore predefinito: `""`) @@ -589,7 +589,7 @@ ** valori: on, off (valore predefinito: `on`) * [[option_irc.server_default.username]] *irc.server_default.username* -** descrizione: `nome utente da usare sul server` +** descrizione: `user name to use on server (note: content is evaluated, see /help eval)` ** tipo: stringa ** valori: qualsiasi stringa (valore predefinito: `""`) diff --git a/doc/it/autogen/user/weechat_commands.txt b/doc/it/autogen/user/weechat_commands.txt index 5ae4dc2c5..c1684e8ae 100644 --- a/doc/it/autogen/user/weechat_commands.txt +++ b/doc/it/autogen/user/weechat_commands.txt @@ -703,37 +703,37 @@ Senza argomento, vengono salvati tutti i file (WeeChat e plugin). set <nome> <valore> del <nome> -passphrase: cambia la chiave di cifratura (senza la chiave di cifratura, i dati vengono salvati in chiaron nel file sec.conf) - -delete: elimina la chiave di cifratura - decrypt: decifra tutti i dati ancora cifrati (accade solo se la chiave di cifratura non è stata digitata all'avvio) - -discard: scarta tutti i dati ancora cifrati - set: aggiunge o modifica dati sicuri - del: elimina dati sicuri - -Senza argomento, questo comando mostra i dati messi al sicuro in un nuovo buffer. - -Quando viene usata una chiave di cifratura (dati cifrati), questa viene richiesta da WeeChat all'avvio. -È possibile impostare la variabile d'ambiente "WEECHAT_PASSPHRASE" per prevenire il prompt (questa stessa variabile viene usata da WeeChat con il comando /upgrade). - -I dati messi al sicuro con il formato ${sec.data.xxx} possono essere usati in questo modo: - - argomento della riga di comando "--run-command" - - opzioni weechat.startup.command_{before|after}_plugins - - opzioni del proxy: nome utente, password - - opzioni del server irc: autojoin, comando, password, sasl_{username|password} - - opzione relay.network.password - - comando /eval. +passphrase: change the passphrase (without passphrase, data is stored as plain text in file sec.conf) + -delete: delete passphrase + decrypt: decrypt data still encrypted (it happens only if passphrase was not given on startup) + -discard: discard all data still encrypted + set: add or change secured data + del: delete secured data + +Without argument, this command displays secured data in a new buffer. + +When a passphrase is used (data encrypted), it is asked by WeeChat on startup. +It is possible to set environment variable "WEECHAT_PASSPHRASE" to prevent the prompt (this same variable is used by WeeChat on /upgrade). + +Secured data with format ${sec.data.xxx} can be used in: + - command line argument "--run-command" + - options weechat.startup.command_{before|after}_plugins + - proxy options: username, password + - irc server options: autojoin, command, password, sasl_{username|password}, username, realname + - option relay.network.password + - command /eval. -Esempi: - imposta una chiave di cifratura: - /secure passphrase questa è la mia chiave di cifratura - cifra la password SASL di freenode: - /secure set freenode miapassword +Examples: + set a passphrase: + /secure passphrase this is my passphrase + encrypt freenode SASL password: + /secure set freenode mypassword /set irc.server.freenode.sasl_password "${sec.data.freenode}" - cifra la password di oftc per nickserv: - /secure set oftc miapassword + encrypt oftc password for nickserv: + /secure set oftc mypassword /set irc.server.oftc.command "/msg nickserv identify ${sec.data.oftc}" - alias per il "ghost" del nick "mionick": - /alias ghost /eval /msg -server freenode nickserv ghost mionick ${sec.data.freenode} + alias to ghost the nick "mynick": + /alias ghost /eval /msg -server freenode nickserv ghost mynick ${sec.data.freenode} ---- [[command_weechat_set]] |