aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2017-02-21 18:54:44 +0100
committerKim Alvefur <zash@zash.se>2017-02-21 18:54:44 +0100
commit41c35464f7c214d30365f4c26619a82bad1e0b48 (patch)
tree506db3019f9c07b33499ccf6584f3cafdfe0d8b0 /plugins
parent05077e583bd1ae35f974092be6fe5f5260cbf6ea (diff)
downloadprosody-41c35464f7c214d30365f4c26619a82bad1e0b48.tar.gz
prosody-41c35464f7c214d30365f4c26619a82bad1e0b48.zip
mod_register: Require encryption before registration if c2s_require_encryption is set (fixes #595)
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_register.lua5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/mod_register.lua b/plugins/mod_register.lua
index 3d7a068c..63d0b077 100644
--- a/plugins/mod_register.lua
+++ b/plugins/mod_register.lua
@@ -20,6 +20,7 @@ local jid_bare = require "util.jid".bare;
local compat = module:get_option_boolean("registration_compat", true);
local allow_registration = module:get_option_boolean("allow_registration", false);
local additional_fields = module:get_option("additional_registration_fields", {});
+local require_encryption = module:get_option("c2s_require_encryption") or module:get_option("require_encryption");
local account_details = module:open_store("account_details");
@@ -75,7 +76,7 @@ module:hook("stream-features", function(event)
local session, features = event.origin, event.features;
-- Advertise registration to unauthorized clients only.
- if not(allow_registration) or session.type ~= "c2s_unauthed" then
+ if not(allow_registration) or session.type ~= "c2s_unauthed" or (require_encryption and not session.secure) then
return
end
@@ -183,6 +184,8 @@ module:hook("stanza/iq/jabber:iq:register:query", function(event)
if not(allow_registration) or session.type ~= "c2s_unauthed" then
session.send(st.error_reply(stanza, "cancel", "service-unavailable"));
+ elseif require_encryption and not session.secure then
+ session.send(st.error_reply(stanza, "modify", "policy-violation", "Encryption is required"));
else
local query = stanza.tags[1];
if stanza.attr.type == "get" then