mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Updated to use module:get_option instead of configmanager
This commit is contained in:
parent
ac0b566ab4
commit
b3d4c0ec73
1 changed files with 1 additions and 4 deletions
|
@ -6,14 +6,11 @@
|
|||
-- COPYING file in the source package for more information.
|
||||
--
|
||||
|
||||
|
||||
|
||||
local st = require "util.stanza";
|
||||
|
||||
local xmlns_starttls ='urn:ietf:params:xml:ns:xmpp-tls';
|
||||
|
||||
local config = require "core.configmanager";
|
||||
local secure_auth_only = config.get("*", "core", "require_encryption");
|
||||
local secure_auth_only = module:get_option("require_encryption");
|
||||
|
||||
module:add_handler("c2s_unauthed", "starttls", xmlns_starttls,
|
||||
function (session, stanza)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue