plugins/mod_welcome.lua
changeset 8164 31938a0c398f
parent 7230 c6f9d694d778
parent 8163 5566f82ffea4
child 12981 74b9e05af71e
--- 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);