mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
06e29c834c
2 changed files with 7 additions and 8 deletions
|
@ -19,11 +19,9 @@ motd_text = motd_text:gsub("^%s*(.-)%s*$", "%1"):gsub("\n[ \t]+", "\n"); -- Stri
|
|||
|
||||
module:hook("presence/initial", function (event)
|
||||
local session, stanza = event.origin, event.stanza;
|
||||
if not stanza.attr.type and not stanza.attr.to then
|
||||
local motd_stanza =
|
||||
st.message({ to = session.full_jid, from = motd_jid })
|
||||
:tag("body"):text(motd_text);
|
||||
module:send(motd_stanza);
|
||||
module:log("debug", "MOTD send to user %s", session.full_jid);
|
||||
end
|
||||
end, 1);
|
||||
|
|
|
@ -63,6 +63,7 @@ function handle_normal_presence(origin, stanza)
|
|||
core_post_stanza(origin, stanza, true);
|
||||
end
|
||||
end
|
||||
stanza.attr.to = nil;
|
||||
if stanza.attr.type == nil and not origin.presence then -- initial presence
|
||||
module:fire_event("presence/initial", { origin = origin, stanza = stanza } );
|
||||
origin.presence = stanza; -- FIXME repeated later
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue