Software /
code /
prosody
Changeset
2173:f9af31dbfeb8
MUC: Prevent visitors from broadcasting messages.
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Wed, 25 Nov 2009 21:42:05 +0500 |
parents | 2172:84dd0fada45b |
children | 2174:13375e6c4ecb |
files | plugins/muc/muc.lib.lua |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;