Mercurial > prosody-hg
diff plugins/mod_welcome.lua @ 8161:31938a0c398f
Merge 0.9->0.10
| author | Kim Alvefur <zash@zash.se> |
|---|---|
| date | Thu, 01 Jun 2017 14:05:43 +0200 |
| parents | c6f9d694d778 5566f82ffea4 |
| children | 74b9e05af71e |
line wrap: on
line diff
--- a/plugins/mod_welcome.lua Thu Jun 01 14:03:50 2017 +0200 +++ b/plugins/mod_welcome.lua Thu Jun 01 14:05:43 2017 +0200 @@ -14,8 +14,8 @@ 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);
