aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_tls.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-10-05 14:59:30 +0100
committerMatthew Wild <mwild1@gmail.com>2009-10-05 14:59:30 +0100
commitde057a2b2b34a914240d639da067dbae6e9a960b (patch)
tree4ff8bb1dbd0a415b20e856d9f32d241c86c187e9 /plugins/mod_tls.lua
parent57d6a05e8313a9644b8fa94b710266a2b4605739 (diff)
downloadprosody-de057a2b2b34a914240d639da067dbae6e9a960b.tar.gz
prosody-de057a2b2b34a914240d639da067dbae6e9a960b.zip
require_encryption deprecated, use c2s_require_encryption instead
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r--plugins/mod_tls.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua
index 61b8d6d9..cce6e537 100644
--- a/plugins/mod_tls.lua
+++ b/plugins/mod_tls.lua
@@ -11,7 +11,7 @@ local st = require "util.stanza";
local xmlns_stream = 'http://etherx.jabber.org/streams';
local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls';
-local secure_auth_only = module:get_option("require_encryption");
+local secure_auth_only = module:get_option("c2s_require_encryption") or module:get_option("require_encryption");
local secure_s2s_only = module:get_option("require_s2s_encryption");
module:add_handler("c2s_unauthed", "starttls", xmlns_starttls,