mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_message: Fire event for groupchat messages sent to bare JID
This is becoming more common in XMPP as people experiment with a MIX-like model where the bare JID joins a group chat instead of a full JID. Specifically right now this is being added to help with processing notifications from mod_muc_offline_delivery.
This commit is contained in:
parent
d22a31530a
commit
584285332d
1 changed files with 9 additions and 0 deletions
|
@ -22,6 +22,15 @@ local function process_to_bare(bare, origin, stanza)
|
|||
if t == "error" then
|
||||
return true; -- discard
|
||||
elseif t == "groupchat" then
|
||||
local node, host = jid_split(bare);
|
||||
if user_exists(node, host) then
|
||||
if module:fire_event("message/bare/groupchat", {
|
||||
origin = origin, stanza = stanza;
|
||||
}) then
|
||||
return true;
|
||||
end
|
||||
end
|
||||
|
||||
origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
|
||||
elseif t == "headline" then
|
||||
if user and stanza.attr.to == bare then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue