mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
prosodyctl: check certs: Warn about certificate expiry in the near future
This commit is contained in:
parent
0c30b8a273
commit
4ae28434fa
1 changed files with 7 additions and 0 deletions
|
@ -1243,6 +1243,13 @@ function commands.check(arg)
|
|||
if not cert:validat(os.time()) then
|
||||
print(" Certificate has expired.")
|
||||
cert_ok = false
|
||||
elseif not cert:validat(os.time() + 86400) then
|
||||
print(" Certificate expires within one day.")
|
||||
cert_ok = false
|
||||
elseif not cert:validat(os.time() + 86400*7) then
|
||||
print(" Certificate expires within one week.")
|
||||
elseif not cert:validat(os.time() + 86400*13) then
|
||||
print(" Certificate expires within one month.")
|
||||
end
|
||||
if config.get(host, "component_module") == nil
|
||||
and not x509_verify_identity(host, "_xmpp-client", cert) then
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue