rmodifier: add default rmodifier "quote_pass" to hide password in command "/quote pass" (bug #36250)

This commit is contained in:
Sebastien Helleu 2012-04-19 11:38:21 +02:00
parent c72fa72aef
commit f4a07da0a2
2 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,7 @@
WeeChat ChangeLog
=================
Sébastien Helleu <flashcode@flashtux.org>
v0.3.8-dev, 2012-04-17
v0.3.8-dev, 2012-04-19
Version 0.3.8 (under dev!)
@ -59,6 +59,8 @@ Version 0.3.8 (under dev!)
ison, list, names, topic, who, whois, whowas, time, userhost) (bug #33516)
* relay: add "date_printed" and "highlight" in signal "_buffer_line_added"
(WeeChat protocol)
* rmodifier: add default rmodifier "quote_pass" to hide password in command
"/quote pass" (bug #36250)
* rmodifier: add default rmodifier "server" to hide passwords in commands
/server and /connect (task #11993)
* rmodifier: add option "release" in default rmodifier "nickserv" (used to hide

View File

@ -47,6 +47,9 @@ char *rmodifier_config_default_list[][4] =
{ "oper", "history_add,input_text_display",
"^(/oper +\\S+ +)(.*)", "1,2*"
},
{ "quote_pass", "history_add,input_text_display",
"^(/quote pass +)(.*)", "1,2*"
},
{ "set_pass", "history_add",
"^(/set +\\S*password\\S* +)(.*)", "1,2*"
},