diff options
author | Kim Alvefur <zash@zash.se> | 2018-05-20 18:56:26 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2018-05-20 18:56:26 +0200 |
commit | 8c1dad708dd7e9706366981452d3b4f514f8f812 (patch) | |
tree | bd9563c44ba722dee9bb6ebc2527606c381b1cea | |
parent | 2eb76153f9a49c0e9c3c30f70c713476b8f7a88a (diff) | |
download | prosody-8c1dad708dd7e9706366981452d3b4f514f8f812.tar.gz prosody-8c1dad708dd7e9706366981452d3b4f514f8f812.zip |
mod_watchregistrations: Allow making the message type configurable
-rw-r--r-- | plugins/mod_watchregistrations.lua | 3 |
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; |