Merge 0.9->0.10
[prosody.git] / plugins / mod_welcome.lua
index edcfbd8c0f134306b45cef949bba672f4e0f7d56..9c0c821b582b6b771c37f6a1672c8b17aad5f681 100644 (file)
@@ -1,7 +1,7 @@
 -- Prosody IM
--- Copyright (C) 2008-2009 Matthew Wild
--- Copyright (C) 2008-2009 Waqas Hussain
--- 
+-- Copyright (C) 2008-2010 Matthew Wild
+-- Copyright (C) 2008-2010 Waqas Hussain
+--
 -- This project is MIT/X11 licensed. Please see the
 -- COPYING file in the source package for more information.
 --
@@ -11,11 +11,11 @@ local welcome_text = module:get_option("welcome_message") or "Hello $username, w
 
 local st = require "util.stanza";
 
-module:hook("user-registered", 
+module:hook("user-registered",
        function (user)
-               local welcome_stanza = 
+               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);