mirror of
https://github.com/processone/ejabberd.git
synced 2024-11-22 16:20:52 +01:00
* src/mod_muc/mod_muc_room.erl: MUC kicks a participant if sends a
private message with type=error (EJAB-496) SVN Revision: 1142
This commit is contained in:
parent
635978b137
commit
7672515e76
@ -1,3 +1,8 @@
|
||||
2008-01-09 Badlop <badlop@process-one.net>
|
||||
|
||||
* src/mod_muc/mod_muc_room.erl: MUC kicks a participant if sends a
|
||||
private message with type=error (EJAB-496)
|
||||
|
||||
2008-01-08 Badlop <badlop@process-one.net>
|
||||
|
||||
* src/ejabberdctl.template: Removed the option ERL_FULLSWEEP_AFTER
|
||||
|
@ -469,23 +469,6 @@ normal_state({route, From, ToNick,
|
||||
StateData) ->
|
||||
Type = xml:get_attr_s("type", Attrs),
|
||||
Lang = xml:get_attr_s("xml:lang", Attrs),
|
||||
case Type of
|
||||
"error" ->
|
||||
case is_user_online(From, StateData) of
|
||||
true ->
|
||||
NewState =
|
||||
add_user_presence_un(
|
||||
From,
|
||||
{xmlelement, "presence",
|
||||
[{"type", "unavailable"}], []},
|
||||
StateData),
|
||||
send_new_presence(From, NewState),
|
||||
{next_state, normal_state,
|
||||
remove_online_user(From, NewState)};
|
||||
_ ->
|
||||
{next_state, normal_state, StateData}
|
||||
end;
|
||||
_ ->
|
||||
case (StateData#state.config)#config.allow_private_messages
|
||||
andalso is_user_online(From, StateData) of
|
||||
true ->
|
||||
@ -532,8 +515,7 @@ normal_state({route, From, ToNick,
|
||||
ToNick),
|
||||
From, Err)
|
||||
end,
|
||||
{next_state, normal_state, StateData}
|
||||
end;
|
||||
{next_state, normal_state, StateData};
|
||||
|
||||
normal_state({route, From, ToNick,
|
||||
{xmlelement, "iq", Attrs, _Els} = Packet},
|
||||
|
Loading…
Reference in New Issue
Block a user