diff options
Diffstat (limited to 'doc/de')
-rw-r--r-- | doc/de/autogen/plugin_api/infos.adoc | 4 | ||||
-rw-r--r-- | doc/de/autogen/user/relay_options.adoc | 12 |
2 files changed, 16 insertions, 0 deletions
diff --git a/doc/de/autogen/plugin_api/infos.adoc b/doc/de/autogen/plugin_api/infos.adoc index 810f66e1e..1ae5bb8d1 100644 --- a/doc/de/autogen/plugin_api/infos.adoc +++ b/doc/de/autogen/plugin_api/infos.adoc @@ -112,6 +112,10 @@ | weechat | term_width | Breite des Terminals | - +| weechat | totp_generate | generate a Time-based One-Time Password (TOTP) | secret (in base32), timestamp (optional, current time by default), number of digits (optional, between 4 and 10, 6 by default) + +| weechat | totp_validate | validate a Time-based One-Time Password (TOTP): 1 if TOTP is correct, otherwise 0 | secret (in base32), one-time password, timestamp (optional, current time by default), number of passwords before/after to test (optional, 0 by default) + | weechat | uptime | Laufzeit von Weechat (Format: "days:hh:mm:ss") | "days" (Anzahl der Tage) oder "seconds" (Anzahl der Sekunden) (optional) | weechat | version | WeeChat-Version | - diff --git a/doc/de/autogen/user/relay_options.adoc b/doc/de/autogen/user/relay_options.adoc index 50fbd21fd..1572eeb3c 100644 --- a/doc/de/autogen/user/relay_options.adoc +++ b/doc/de/autogen/user/relay_options.adoc @@ -164,6 +164,18 @@ ** Werte: beliebige Zeichenkette ** Standardwert: `+"NORMAL:-VERS-SSL3.0"+` +* [[option_relay.network.totp_secret]] *relay.network.totp_secret* +** Beschreibung: pass:none[secret for the generation of the Time-based One-Time Password (TOTP), encoded in base32 (only letters and digits from 2 to 7); it is used as second factor in weechat protocol, in addition to the password, which must not be empty (empty value means no TOTP is required) (note: content is evaluated, see /help eval)] +** Typ: Zeichenkette +** Werte: beliebige Zeichenkette +** Standardwert: `+""+` + +* [[option_relay.network.totp_window]] *relay.network.totp_window* +** Beschreibung: pass:none[number of Time-based One-Time Passwords to accept before and after the current one: 0 = accept only the current password, 1 = accept one password before, the current, and one after, 2 = accept two passwords before, the current, and two after, ...; a high number reduces the security level (0 or 1 are recommended values)] +** Typ: integer +** Werte: 0 .. 256 +** Standardwert: `+0+` + * [[option_relay.network.websocket_allowed_origins]] *relay.network.websocket_allowed_origins* ** Beschreibung: pass:none[erweiterter regulärer POSIX Ausdruck für Origins in WebSockets (Groß- und Kleinschreibung wird ignoriert. Um Groß- und Kleinschreibung zu unterscheiden muss "(?-i)" dem Origin vorangestellt werden), Beispiele: "^http://(www\.)?example\.(com|org)"] ** Typ: Zeichenkette |