# HG changeset patch # User Waqas Hussain # Date 1259167325 -18000 # Node ID f9af31dbfeb8f079aaa4087f2c738e6f350638fd # Parent 84dd0fada45b6ac862de8e6befede1dc80a0d34f MUC: Prevent visitors from broadcasting messages. diff -r 84dd0fada45b -r f9af31dbfeb8 plugins/muc/muc.lib.lua --- a/plugins/muc/muc.lib.lua Wed Nov 25 21:40:44 2009 +0500 +++ b/plugins/muc/muc.lib.lua Wed Nov 25 21:42:05 2009 +0500 @@ -519,8 +519,11 @@ local from, to = stanza.attr.from, stanza.attr.to; local room = jid_bare(to); local current_nick = self._jid_nick[from]; - if not current_nick then -- not in room + local occupant = self._occupants[current_nick]; + if not occupant then -- not in room origin.send(st.error_reply(stanza, "cancel", "not-acceptable")); + elseif occupant.role == "visitor" then + origin.send(st.error_reply(stanza, "cancel", "forbidden")); else local from = stanza.attr.from; stanza.attr.from = current_nick;