mod_watchregistrations: Allow making the message type configurable
authorKim Alvefur <zash@zash.se>
Sun, 20 May 2018 18:56:26 +0200
changeset 8815 3d7fceaff230
parent 8814 f2d35eee69c9
child 8816 2c55fccb0c0c
mod_watchregistrations: Allow making the message type configurable
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;