mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
Fix error message when register is forbidden by ACL (EJAB-803)
SVN Revision: 2823
This commit is contained in:
parent
b2d6a25240
commit
c7f4f39c03
@ -218,7 +218,7 @@ try_register(User, Server, Password, Source, Lang) ->
|
||||
Access = gen_mod:get_module_opt(Server, ?MODULE, access, all),
|
||||
case acl:match_rule(Server, Access, JID) of
|
||||
deny ->
|
||||
{error, ?ERR_CONFLICT};
|
||||
{error, ?ERR_FORBIDDEN};
|
||||
allow ->
|
||||
case check_timeout(Source) of
|
||||
true ->
|
||||
|
Loading…
Reference in New Issue
Block a user