Comparison

prosodyctl @ 7445:6d2038147d3d

prosodyctl: Fix typo (thanks av6)
author Kim Alvefur <zash@zash.se>
date Sat, 28 May 2016 13:10:40 +0200
parent 7311:e9526dd3e8fc
child 7447:843fe134453e
child 7455:82d8c11ab0cb
comparison
equal deleted inserted replaced
7443:4a178edc9847 7445:6d2038147d3d
1259 elseif not cert:validat(os.time() + 86400*31) then 1259 elseif not cert:validat(os.time() + 86400*31) then
1260 print(" Certificate expires within one month.") 1260 print(" Certificate expires within one month.")
1261 end 1261 end
1262 if config.get(host, "component_module") == nil 1262 if config.get(host, "component_module") == nil
1263 and not x509_verify_identity(host, "_xmpp-client", cert) then 1263 and not x509_verify_identity(host, "_xmpp-client", cert) then
1264 print(" Not vaild for client connections to "..host..".") 1264 print(" Not valid for client connections to "..host..".")
1265 cert_ok = false 1265 cert_ok = false
1266 end 1266 end
1267 if (not (config.get(host, "anonymous_login") 1267 if (not (config.get(host, "anonymous_login")
1268 or config.get(host, "authentication") == "anonymous")) 1268 or config.get(host, "authentication") == "anonymous"))
1269 and not x509_verify_identity(host, "_xmpp-server", cert) then 1269 and not x509_verify_identity(host, "_xmpp-server", cert) then
1270 print(" Not vaild for server-to-server connections to "..host..".") 1270 print(" Not valid for server-to-server connections to "..host..".")
1271 cert_ok = false 1271 cert_ok = false
1272 end 1272 end
1273 end 1273 end
1274 end 1274 end
1275 end 1275 end