2 -- Copyright (C) 2008-2010 Matthew Wild
3 -- Copyright (C) 2008-2010 Waqas Hussain
5 -- This project is MIT/X11 licensed. Please see the
6 -- COPYING file in the source package for more information.
10 local host
= module
:get_host();
11 local jid_prep
= require
"util.jid".prep
;
13 local registration_watchers
= module
:get_option_set("registration_watchers", module
:get_option("admins", {})) / jid_prep
;
14 local registration_notification
= module
:get_option("registration_notification", "User $username just registered on $host from $ip");
16 local st
= require
"util.stanza";
18 module
:hook("user-registered", function (user
)
19 module
:log("debug", "Notifying of new registration");
20 local message
= st
.message
{ type = "chat", from
= host
}
22 :text(registration_notification
:gsub("%$(%w+)", function (v
)
23 return user
[v
] or user
.session
and user
.session
[v
] or nil;
26 for jid
in registration_watchers
do
27 module
:log("debug", "Notifying %s", jid
);
28 message
.attr
.to
= jid
;