# HG changeset patch # User Matthew Wild # Date 1227585173 0 # Node ID 4b61529d08845e3f6e51a162ae8d90e83a03d1e0 # Parent b5b4ec28feec1a1f596a9f9956021d8bc988edba Refuse to run without SSL/TLS unless run_without_ssl is set in config diff -r b5b4ec28feec -r 4b61529d0884 util/dependencies.lua --- a/util/dependencies.lua Tue Nov 25 03:50:08 2008 +0000 +++ b/util/dependencies.lua Tue Nov 25 03:52:53 2008 +0000 @@ -35,7 +35,11 @@ local ssl = softreq "ssl" if not ssl then - missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available"); + if config.get("*", "core", "run_without_ssl") then + log("warn", "Running without SSL support because run_without_ssl is defined in the config"); + else + missingdep("LuaSec", { ["Source"] = "http://www.inf.puc-rio.br/~brunoos/luasec/" }, "SSL/TLS support will not be available"); + end end