mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
Don't render CAPTCHA whitelist when CAPTCHA is not configured
Fixes #2970
This commit is contained in:
parent
a2fa52a192
commit
48bed43902
@ -3527,11 +3527,15 @@ get_config(Lang, StateData, From) ->
|
||||
{pubsub, Config#config.pubsub}]
|
||||
++
|
||||
case ejabberd_captcha:is_feature_available() of
|
||||
true -> [{captcha_protected, Config#config.captcha_protected}];
|
||||
false -> []
|
||||
end ++
|
||||
[{captcha_whitelist,
|
||||
lists:map(fun jid:make/1, ?SETS:to_list(Config#config.captcha_whitelist))}]
|
||||
true ->
|
||||
[{captcha_protected, Config#config.captcha_protected},
|
||||
{captcha_whitelist,
|
||||
lists:map(
|
||||
fun jid:make/1,
|
||||
?SETS:to_list(Config#config.captcha_whitelist))}];
|
||||
false ->
|
||||
[]
|
||||
end
|
||||
++
|
||||
case mod_muc_log:check_access_log(StateData#state.server_host, From) of
|
||||
allow -> [{enablelogging, Config#config.logging}];
|
||||
|
Loading…
Reference in New Issue
Block a user