From 11b1d563ce87237008b1323869e049a1a1988fe1 Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Mon, 16 Feb 2009 20:05:58 +0500 Subject: MUC: Kick participants sending error messages to other participants --- plugins/mod_muc.lua | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) (limited to 'plugins/mod_muc.lua') diff --git a/plugins/mod_muc.lua b/plugins/mod_muc.lua index 7c6d283c..36ea0477 100644 --- a/plugins/mod_muc.lua +++ b/plugins/mod_muc.lua @@ -329,9 +329,19 @@ function handle_to_occupant(origin, stanza) -- PM, vCards, etc end elseif not current_nick then -- not in room origin.send(st.error_reply(stanza, "cancel", "not-acceptable")); - elseif stanza.name == "message" and type == "groupchat" then - -- groupchat messages not allowed in PM + elseif stanza.name == "message" and type == "groupchat" then -- groupchat messages not allowed in PM origin.send(st.error_reply(stanza, "modify", "bad-request")); + elseif stanza.name == "message" and type == "error" then + if current_nick then + local data = rooms:get(room, to); + data.role = 'none'; + local pr = st.presence({type='unavailable', from=current_nick}):tag('status'):text('This participant is kicked from the room because he sent an error message to another occupant'):up() + :tag("x", {xmlns='http://jabber.org/protocol/muc#user'}) + :tag("item", {affiliation=data.affiliation, role=data.role}):up(); + broadcast_presence_stanza(room, pr); + rooms:remove(room, to); + jid_nick:remove(from, room); + end else -- private stanza local o_data = rooms:get(room, to); if o_data then -- cgit v1.2.3