Software / code / prosody
Changeset
2519:a4f9ed3f912e
mod_privacy: ...and no 'to' for presence implies an outgoing broadcast
| author | Matthew Wild <mwild1@gmail.com> |
|---|---|
| date | Fri, 29 Jan 2010 02:49:34 +0000 |
| parents | 2518:c4240df1b412 |
| children | 2520:f28fbc93eb54 |
| files | plugins/mod_privacy.lua |
| diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/plugins/mod_privacy.lua Fri Jan 29 02:41:36 2010 +0000 +++ b/plugins/mod_privacy.lua Fri Jan 29 02:49:34 2010 +0000 @@ -415,7 +415,7 @@ (stanza.name == "message" and item.message) or (stanza.name == "iq" and item.iq) or (stanza.name == "presence" and jid_bare(stanza.attr.to) == bare_jid and item["presence-in"]) or - (stanza.name == "presence" and not stanza.attr.from or jid_bare(stanza.attr.from) == bare_jid and item["presence-out"]) or + (stanza.name == "presence" and not stanza.attr.from or not stanza.attr.to or jid_bare(stanza.attr.from) == bare_jid and item["presence-out"]) or (item.message == false and item.iq == false and item["presence-in"] == false and item["presence-out"] == false) ) then apply = true;