mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_announce, mod_motd, mod_pubsub, mod_register, mod_watchregistrations, mod_welcome: Use module:send() instead of core_*_stanza()
This commit is contained in:
parent
9114e88ee0
commit
df70fc2508
6 changed files with 7 additions and 7 deletions
|
@ -16,6 +16,6 @@ module:hook("user-registered",
|
|||
local welcome_stanza =
|
||||
st.message({ to = user.username.."@"..user.host, from = host })
|
||||
:tag("body"):text(welcome_text:gsub("$(%w+)", user));
|
||||
core_route_stanza(hosts[host], welcome_stanza);
|
||||
module:send(welcome_stanza);
|
||||
module:log("debug", "Welcomed user %s@%s", user.username, user.host);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue