Software /
code /
prosody
Changeset
8812:3d7fceaff230
mod_watchregistrations: Allow making the message type configurable
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 20 May 2018 18:56:26 +0200 |
parents | 8811:f2d35eee69c9 |
children | 8813:2c55fccb0c0c |
files | plugins/mod_watchregistrations.lua |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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;