# HG changeset patch # User Kim Alvefur # Date 1526835386 -7200 # Node ID 3d7fceaff2305062a42b0c7261797fb63ee7043d # Parent f2d35eee69c958f07ce9d5130f2dff3cbbebff87 mod_watchregistrations: Allow making the message type configurable diff -r f2d35eee69c9 -r 3d7fceaff230 plugins/mod_watchregistrations.lua --- a/plugins/mod_watchregistrations.lua Mon May 21 00:24:50 2018 +0200 +++ b/plugins/mod_watchregistrations.lua Sun May 20 18:56:26 2018 +0200 @@ -13,12 +13,13 @@ local registration_watchers = module:get_option_set("registration_watchers", module:get_option("admins", {})) / jid_prep; local registration_from = module:get_option_string("registration_from", host); local registration_notification = module:get_option_string("registration_notification", "User $username just registered on $host from $ip"); +local msg_type = module:get_option_string("registration_notification_type", "chat"); local st = require "util.stanza"; module:hook("user-registered", function (user) module:log("debug", "Notifying of new registration"); - local message = st.message{ type = "chat", from = registration_from } + local message = st.message{ type = msg_type, from = registration_from } :tag("body") :text(registration_notification:gsub("%$(%w+)", function (v) return user[v] or user.session and user.session[v] or nil;