aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_register.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-08-24 21:51:11 +0200
committerKim Alvefur <zash@zash.se>2017-08-24 21:51:11 +0200
commita15830f3784e1314848f6cea9d2302edb89b4d7b (patch)
treef596211057766159319bf83b8eb6a0c2f9f3bea1 /plugins/mod_register.lua
parent88bd13d98b8220f5136890f69becf8a929ad1e0c (diff)
downloadprosody-a15830f3784e1314848f6cea9d2302edb89b4d7b.tar.gz
prosody-a15830f3784e1314848f6cea9d2302edb89b4d7b.zip
mod_register: Add comments saying which section handles password change, account deletion and which is in-band registration
Diffstat (limited to 'plugins/mod_register.lua')
-rw-r--r--plugins/mod_register.lua2
1 files changed, 2 insertions, 0 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua
index 832dd991..b39ce090 100644
--- a/plugins/mod_register.lua
+++ b/plugins/mod_register.lua
@@ -91,6 +91,7 @@ module:hook("stream-features", function(event)
features:add_child(register_stream_feature);
end);
+-- Password change and account deletion handler
local function handle_registration_stanza(event)
local session, stanza = event.origin, event.stanza;
local log = session.log or module._log;
@@ -207,6 +208,7 @@ local function check_throttle(ip)
return throttle:poll(1);
end
+-- In-band registration
module:hook("stanza/iq/jabber:iq:register:query", function(event)
local session, stanza = event.origin, event.stanza;
local log = session.log or module._log;