plugins/mod_welcome.lua
changeset 8163 5566f82ffea4
parent 5014 b2006c1cfa85
child 8164 31938a0c398f
--- a/plugins/mod_welcome.lua	Sat May 27 15:53:30 2017 +0100
+++ b/plugins/mod_welcome.lua	Tue May 30 20:52:22 2017 +0100
@@ -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);