aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2020-04-26 20:58:51 +0200
committerKim Alvefur <zash@zash.se>2020-04-26 20:58:51 +0200
commit7c180434048c04edac669e2b6bb26eae0af68883 (patch)
tree0f3554f144cf1f358e01f2da09c164014c2effda /plugins
parent156f32c8230e9dd86924893793cd6befc78665de (diff)
downloadprosody-7c180434048c04edac669e2b6bb26eae0af68883.tar.gz
prosody-7c180434048c04edac669e2b6bb26eae0af68883.zip
mod_tls: Log when certificates are (re)loaded
Meant to reduce user confusion over what's reloaded and not.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_tls.lua8
1 files changed, 7 insertions, 1 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua
index eb208e28..8c0c4e20 100644
--- a/plugins/mod_tls.lua
+++ b/plugins/mod_tls.lua
@@ -36,7 +36,7 @@ local host = hosts[module.host];
local ssl_ctx_c2s, ssl_ctx_s2sout, ssl_ctx_s2sin;
local ssl_cfg_c2s, ssl_cfg_s2sout, ssl_cfg_s2sin;
-function module.load()
+function module.load(reload)
local NULL, err = {};
local modhost = module.host;
local parent = modhost:match("%.(.*)$");
@@ -63,6 +63,12 @@ function module.load()
module:log("debug", "Creating context for s2sin");
ssl_ctx_s2sin, err, ssl_cfg_s2sin = create_context(host.host, "server", host_s2s, host_ssl, global_s2s); -- for incoming server connections
if not ssl_ctx_s2sin then module:log("error", "Error creating contexts for s2sin: %s", err); end
+
+ if reload then
+ module:log("info", "Certificates reloaded");
+ else
+ module:log("info", "Certificates loaded");
+ end
end
module:hook_global("config-reloaded", module.load);