Software /
code /
prosody
Diff
util/openssl.lua @ 5379:27de7cc94111
util.{prosodyctl,openssl}: More use of config sections removed
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sat, 23 Mar 2013 02:38:30 +0100 |
parent | 5290:befb1923527d |
child | 5544:d911d9fb3929 |
line wrap: on
line diff
--- a/util/openssl.lua Sat Mar 23 02:35:50 2013 +0100 +++ b/util/openssl.lua Sat Mar 23 02:38:30 2013 +0100 @@ -100,13 +100,13 @@ 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);