mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
aa3eb08cef
1 changed files with 2 additions and 2 deletions
|
@ -14,8 +14,8 @@ local st = require "util.stanza";
|
|||
module:hook("user-registered",
|
||||
function (user)
|
||||
local welcome_stanza =
|
||||
st.message({ to = user.username.."@"..user.host, from = host })
|
||||
:tag("body"):text(welcome_text:gsub("$(%w+)", user));
|
||||
st.message({ to = user.username.."@"..user.host, from = host },
|
||||
welcome_text:gsub("$(%w+)", user));
|
||||
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