aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_legacyauth.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2014-10-21 12:49:03 +0200
committerKim Alvefur <zash@zash.se>2014-10-21 12:49:03 +0200
commitfbd277b5c84d752c472348fd3527773ecffe3c48 (patch)
treec1e24c4042660e03e73cb6d1f13dccd3bc1694da /plugins/mod_legacyauth.lua
parenta196567853d643591ea8b51f2b386ac836b0fc63 (diff)
downloadprosody-fbd277b5c84d752c472348fd3527773ecffe3c48.tar.gz
prosody-fbd277b5c84d752c472348fd3527773ecffe3c48.zip
mod_legacyauth, mod_saslauth, mod_tls: Pass require_encryption as default option to s2s_require_encryption so the later overrides the former
Diffstat (limited to 'plugins/mod_legacyauth.lua')
-rw-r--r--plugins/mod_legacyauth.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_legacyauth.lua b/plugins/mod_legacyauth.lua
index 54cbec24..5edc26bb 100644
--- a/plugins/mod_legacyauth.lua
+++ b/plugins/mod_legacyauth.lua
@@ -11,8 +11,8 @@
local st = require "util.stanza";
local t_concat = table.concat;
-local secure_auth_only = module:get_option("c2s_require_encryption")
- or module:get_option("require_encryption")
+local secure_auth_only = module:get_option("c2s_require_encryption",
+ module:get_option("require_encryption"))
or not(module:get_option("allow_unencrypted_plain_auth"));
local sessionmanager = require "core.sessionmanager";