aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_watchregistrations.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-05-20 18:56:26 +0200
committerKim Alvefur <zash@zash.se>2018-05-20 18:56:26 +0200
commit127ca3002014e5e327c816b0b7c652b7c0d4d8e6 (patch)
treebd9563c44ba722dee9bb6ebc2527606c381b1cea /plugins/mod_watchregistrations.lua
parent8221c93baf29539ae134c7e58e559a06ec9877c0 (diff)
downloadprosody-127ca3002014e5e327c816b0b7c652b7c0d4d8e6.tar.gz
prosody-127ca3002014e5e327c816b0b7c652b7c0d4d8e6.zip
mod_watchregistrations: Allow making the message type configurable
Diffstat (limited to 'plugins/mod_watchregistrations.lua')
-rw-r--r--plugins/mod_watchregistrations.lua3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_watchregistrations.lua b/plugins/mod_watchregistrations.lua
index 82666b09..825b8a73 100644
--- a/plugins/mod_watchregistrations.lua
+++ b/plugins/mod_watchregistrations.lua
@@ -13,12 +13,13 @@ local jid_prep = require "util.jid".prep;
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;