mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
configmanager: Clearer errors when providing unexpected values after VirtualHost (fixes #1735, thanks arawaks)
This commit is contained in:
parent
1e2d4026f9
commit
0f493bd245
1 changed files with 5 additions and 0 deletions
|
@ -160,6 +160,11 @@ do
|
||||||
set(config_table, name or "*", "defined", true);
|
set(config_table, name or "*", "defined", true);
|
||||||
return function (config_options)
|
return function (config_options)
|
||||||
rawset(env, "__currenthost", "*"); -- Return to global scope
|
rawset(env, "__currenthost", "*"); -- Return to global scope
|
||||||
|
if type(config_options) == "string" then
|
||||||
|
error(format("VirtualHost entries do not accept a module name (module '%s' provided for host '%s')", config_options, name), 2);
|
||||||
|
elseif type(config_options) ~= "table" then
|
||||||
|
error("Invalid syntax following VirtualHost, expected options but received a "..type(config_options), 2);
|
||||||
|
end
|
||||||
for option_name, option_value in pairs(config_options) do
|
for option_name, option_value in pairs(config_options) do
|
||||||
set(config_table, name or "*", option_name, option_value);
|
set(config_table, name or "*", option_name, option_value);
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue