diff options
author | Kim Alvefur <zash@zash.se> | 2013-03-23 02:38:30 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-03-23 02:38:30 +0100 |
commit | 7ebd37f7371744d1b4d7b38d2c2dbc9888f5ac83 (patch) | |
tree | 7d438b5b059d336baeea46bbf9dff2fe05538cc9 /util/openssl.lua | |
parent | 915e1bddf3cfdbd6725c229d79b501f75f618455 (diff) | |
download | prosody-7ebd37f7371744d1b4d7b38d2c2dbc9888f5ac83.tar.gz prosody-7ebd37f7371744d1b4d7b38d2c2dbc9888f5ac83.zip |
util.{prosodyctl,openssl}: More use of config sections removed
Diffstat (limited to 'util/openssl.lua')
-rw-r--r-- | util/openssl.lua | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/util/openssl.lua b/util/openssl.lua index b3dc2943..0decb579 100644 --- a/util/openssl.lua +++ b/util/openssl.lua @@ -100,13 +100,13 @@ function ssl_config:from_prosody(hosts, config, certhosts) if name == certhost or name:sub(-1-#certhost) == "."..certhost then found_matching_hosts = true; self:add_dNSName(name); - --print(name .. "#component_module: " .. (config.get(name, "core", "component_module") or "nil")); - if config.get(name, "core", "component_module") == nil then + --print(name .. "#component_module: " .. (config.get(name, "component_module") or "nil")); + if config.get(name, "component_module") == nil then self:add_sRVName(name, "xmpp-client"); end - --print(name .. "#anonymous_login: " .. tostring(config.get(name, "core", "anonymous_login"))); - if not (config.get(name, "core", "anonymous_login") or - config.get(name, "core", "authentication") == "anonymous") then + --print(name .. "#anonymous_login: " .. tostring(config.get(name, "anonymous_login"))); + if not (config.get(name, "anonymous_login") or + config.get(name, "authentication") == "anonymous") then self:add_sRVName(name, "xmpp-server"); end self:add_xmppAddr(name); |