24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-16 22:05:29 +02:00

* Rename option captcha to captcha_protected for consistency.

* Document captcha_protected option
This commit is contained in:
Evgeniy Khramtsov 2010-10-24 15:45:42 +10:00
parent a6858a6ce4
commit 0a1b0498a6
2 changed files with 3 additions and 1 deletions

View File

@ -3775,6 +3775,8 @@ Options:
doesn't allow to register new accounts from s2s or existing c2s sessions. You can doesn't allow to register new accounts from s2s or existing c2s sessions. You can
change it by defining access rule in this option. Use with care: allowing registration change it by defining access rule in this option. Use with care: allowing registration
from s2s leads to uncontrolled massive accounts creation by rogue users. from s2s leads to uncontrolled massive accounts creation by rogue users.
\titem{\{captcha\_protected, false|true\}} \ind{options!captcha\_protected}
Protect registrations with CAPTCHA (see section \ref{captcha}). The default is \term{false}.
\titem{\{welcome\_message, Message\}} \ind{options!welcomem}Set a welcome message that \titem{\{welcome\_message, Message\}} \ind{options!welcomem}Set a welcome message that
is sent to each newly registered account. The first string is the subject, and is sent to each newly registered account. The first string is the subject, and
the second string is the message body. the second string is the message body.

View File

@ -94,7 +94,7 @@ process_iq(From, To,
#iq{type = Type, lang = Lang, sub_el = SubEl, id = ID} = IQ, #iq{type = Type, lang = Lang, sub_el = SubEl, id = ID} = IQ,
Source) -> Source) ->
IsCaptchaEnabled = case gen_mod:get_module_opt( IsCaptchaEnabled = case gen_mod:get_module_opt(
To#jid.lserver, ?MODULE, captcha, false) of To#jid.lserver, ?MODULE, captcha_protected, false) of
true -> true ->
true; true;
_ -> _ ->