diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-29 23:36:24 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-29 23:36:24 +0000 |
commit | ec14708723f359467c1ef8ab4483bb7a96d261ac (patch) | |
tree | 761971561e6af89df6525f17168d7c4bd86fb6a8 /plugins/mod_register.lua | |
parent | ab1dfc9541f1b87bdfff77da06713f713c7f8db3 (diff) | |
download | prosody-ec14708723f359467c1ef8ab4483bb7a96d261ac.tar.gz prosody-ec14708723f359467c1ef8ab4483bb7a96d261ac.zip |
Add allow_registration option to disable account registration
Diffstat (limited to 'plugins/mod_register.lua')
-rw-r--r-- | plugins/mod_register.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua index 120faeab..377bf153 100644 --- a/plugins/mod_register.lua +++ b/plugins/mod_register.lua @@ -94,7 +94,9 @@ module:add_iq_handler("c2s", "jabber:iq:register", function (session, stanza) end); module:add_iq_handler("c2s_unauthed", "jabber:iq:register", function (session, stanza) - if stanza.tags[1].name == "query" then + if config.get(module.host, "core", "allow_registration") == false then + session.send(st.error_reply(stanza, "cancel", "service-unavailable")); + elseif stanza.tags[1].name == "query" then local query = stanza.tags[1]; if stanza.attr.type == "get" then local reply = st.reply(stanza); @@ -132,3 +134,4 @@ module:add_iq_handler("c2s_unauthed", "jabber:iq:register", function (session, s session.send(st.error_reply(stanza, "cancel", "service-unavailable")); end; end); + |