aboutsummaryrefslogtreecommitdiffstats
path: root/core/certmanager.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-11-26 20:08:48 +0100
committerKim Alvefur <zash@zash.se>2016-11-26 20:08:48 +0100
commit269b993aeec5f68784ae10fa7a2d7113b4a44768 (patch)
treecab2303579e4d8482ccedd28be0b7170e9fb9989 /core/certmanager.lua
parent265bfff1782d54578c2b86abcaca2c7ee23813c1 (diff)
downloadprosody-269b993aeec5f68784ae10fa7a2d7113b4a44768.tar.gz
prosody-269b993aeec5f68784ae10fa7a2d7113b4a44768.zip
core.certmanager: Translate "no start line" to something friendlier (thanks santiago)
Diffstat (limited to 'core/certmanager.lua')
-rw-r--r--core/certmanager.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua
index 3872bd9a..12ae94b1 100644
--- a/core/certmanager.lua
+++ b/core/certmanager.lua
@@ -184,9 +184,12 @@ local function create_context(host, mode, ...)
err = err or "invalid ssl config"
local file = err:match("^error loading (.-) %(");
if file then
+ local typ;
if file == "private key" then
+ typ = file;
file = user_ssl_config.key or "your private key";
elseif file == "certificate" then
+ typ = file;
file = user_ssl_config.certificate or "your certificate file";
end
local reason = err:match("%((.+)%)$") or "some reason";
@@ -196,6 +199,8 @@ local function create_context(host, mode, ...)
reason = "Check that the path is correct, and the file exists.";
elseif reason == "system lib" then
reason = "Previous error (see logs), or other system error.";
+ elseif reason == "no start line" then
+ reason = "Check that the file contains a "..(typ or file);
elseif reason == "(null)" or not reason then
reason = "Check that the file exists and the permissions are correct";
else