mirror of
https://github.com/processone/ejabberd.git
synced 2024-12-22 17:28:25 +01:00
Allow non-occupant non-subscribed service admin send private MUC message (#3474)
This commit is contained in:
parent
e1a79ba1b0
commit
b6d90cc55c
@ -531,7 +531,8 @@ normal_state({route, ToNick,
|
|||||||
continue_delivery ->
|
continue_delivery ->
|
||||||
case {(StateData#state.config)#config.allow_private_messages,
|
case {(StateData#state.config)#config.allow_private_messages,
|
||||||
is_user_online(From, StateData) orelse
|
is_user_online(From, StateData) orelse
|
||||||
is_subscriber(From, StateData)} of
|
is_subscriber(From, StateData) orelse
|
||||||
|
is_user_allowed_message_nonparticipant(From, StateData)} of
|
||||||
{true, true} when Type == groupchat ->
|
{true, true} when Type == groupchat ->
|
||||||
ErrText = ?T("It is not allowed to send private messages "
|
ErrText = ?T("It is not allowed to send private messages "
|
||||||
"of type \"groupchat\""),
|
"of type \"groupchat\""),
|
||||||
@ -1192,7 +1193,7 @@ get_participant_data(From, StateData) ->
|
|||||||
#subscriber{nick = FromNick} ->
|
#subscriber{nick = FromNick} ->
|
||||||
{FromNick, none}
|
{FromNick, none}
|
||||||
catch _:{badkey, _} ->
|
catch _:{badkey, _} ->
|
||||||
{<<"">>, moderator}
|
{From#jid.luser, moderator}
|
||||||
end
|
end
|
||||||
end.
|
end.
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user