mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_tls: Log error when TLS initialization fails
This commit is contained in:
parent
92ee981cd1
commit
342de92462
1 changed files with 9 additions and 2 deletions
|
@ -91,14 +91,21 @@ module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza)
|
|||
return true;
|
||||
end);
|
||||
|
||||
local function assert_log(ret, err)
|
||||
if not ret then
|
||||
module:log("error", "Unable to initialize TLS: %s", err);
|
||||
end
|
||||
return ret;
|
||||
end
|
||||
|
||||
function module.load()
|
||||
local ssl_config = config.rawget(module.host, "ssl");
|
||||
if not ssl_config then
|
||||
local base_host = module.host:match("%.(.*)");
|
||||
ssl_config = config.get(base_host, "ssl");
|
||||
end
|
||||
host.ssl_ctx = create_context(host.host, "client", ssl_config); -- for outgoing connections
|
||||
host.ssl_ctx_in = create_context(host.host, "server", ssl_config); -- for incoming connections
|
||||
host.ssl_ctx = assert_log(create_context(host.host, "client", ssl_config)); -- for outgoing connections
|
||||
host.ssl_ctx_in = assert_log(create_context(host.host, "server", ssl_config)); -- for incoming connections
|
||||
end
|
||||
|
||||
function module.unload()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue