Comparison

plugins/mod_legacyauth.lua @ 6487:edc63dc72566

mod_legacyauth, mod_saslauth, mod_tls: Pass require_encryption as default option to s2s_require_encryption so the later overrides the former
author Kim Alvefur <zash@zash.se>
date Tue, 21 Oct 2014 12:49:03 +0200
parent 6302:76699a0ae4c4
child 8768:bd88ca43d77a
comparison
equal deleted inserted replaced
6486:64146196b142 6487:edc63dc72566
9 9
10 10
11 local st = require "util.stanza"; 11 local st = require "util.stanza";
12 local t_concat = table.concat; 12 local t_concat = table.concat;
13 13
14 local secure_auth_only = module:get_option("c2s_require_encryption") 14 local secure_auth_only = module:get_option("c2s_require_encryption",
15 or module:get_option("require_encryption") 15 module:get_option("require_encryption"))
16 or not(module:get_option("allow_unencrypted_plain_auth")); 16 or not(module:get_option("allow_unencrypted_plain_auth"));
17 17
18 local sessionmanager = require "core.sessionmanager"; 18 local sessionmanager = require "core.sessionmanager";
19 local usermanager = require "core.usermanager"; 19 local usermanager = require "core.usermanager";
20 local nodeprep = require "util.encodings".stringprep.nodeprep; 20 local nodeprep = require "util.encodings".stringprep.nodeprep;