mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-20 16:15:59 +01:00
If stanza is type error, allow it passing (#3290)
This commit is contained in:
parent
0f43c2c528
commit
5318bf3743
@ -208,9 +208,10 @@ need_check(Pkt) ->
|
||||
_ ->
|
||||
false
|
||||
end,
|
||||
IsError = (error == xmpp:get_type(Pkt)),
|
||||
AllowLocalUsers = mod_block_strangers_opt:allow_local_users(LServer),
|
||||
Access = mod_block_strangers_opt:access(LServer),
|
||||
not (IsSelf orelse IsEmpty
|
||||
not (IsSelf orelse IsEmpty orelse IsError
|
||||
orelse acl:match_rule(LServer, Access, From) == allow
|
||||
orelse ((AllowLocalUsers orelse From#jid.luser == <<"">>)
|
||||
andalso ejabberd_router:is_my_host(From#jid.lserver))).
|
||||
|
Loading…
Reference in New Issue
Block a user