X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=plugins%2Fmod_watchregistrations.lua;h=93e69208d02a4fb9ec4b4d16a37bf0808afa0ba2;hb=44f09995e0ba0ba89353b327f0b0a02c107eacac;hp=6970422d4e6af168e640bfa96d7393c38ebcccd2;hpb=88cc36f4d891744ef730e4e46b9d276454f51d40;p=prosody.git diff --git a/plugins/mod_watchregistrations.lua b/plugins/mod_watchregistrations.lua index 6970422d..93e69208 100644 --- a/plugins/mod_watchregistrations.lua +++ b/plugins/mod_watchregistrations.lua @@ -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")