stanza_router: Call core_post_stanza from core_route_stanza in place of old routing...
[prosody.git] / plugins / mod_watchregistrations.lua
index 6970422d4e6af168e640bfa96d7393c38ebcccd2..93e69208d02a4fb9ec4b4d16a37bf0808afa0ba2 100644 (file)
@@ -4,13 +4,14 @@ local host = module:get_host();
 local config = require "core.configmanager";
 
 local registration_watchers = config.get(host, "core", "registration_watchers") 
-       or config.get(host, "core", "admin") or {};
+       or config.get(host, "core", "admins") or {};
 
 local registration_alert = config.get(host, "core", "registration_notification") or "User $username just registered on $host from $ip";
 
 local st = require "util.stanza";
 
-module:add_event_hook("user-registered", function (user)
+module:hook("user-registered",
+       function (user)
                module:log("debug", "Notifying of new registration");
                local message = st.message{ type = "chat", from = host }
                                        :tag("body")