diff options
author | Matthew Wild <mwild1@gmail.com> | 2009-07-28 17:43:46 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2009-07-28 17:43:46 +0100 |
commit | 08391171c3d3f104cd1bc7e855936b04870e81e1 (patch) | |
tree | 97c19f4e9ebdbbe44830dc5ef1c9c7fb34e6b232 /core | |
parent | ceb93e38fe12ed768f8f114e064b145bccacd62a (diff) | |
download | prosody-08391171c3d3f104cd1bc7e855936b04870e81e1.tar.gz prosody-08391171c3d3f104cd1bc7e855936b04870e81e1.zip |
hostmanager: Warn when user puts port configuration under vhost section
Diffstat (limited to 'core')
-rw-r--r-- | core/hostmanager.lua | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index c7b975d1..ba363273 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -41,6 +41,11 @@ function activate(host, host_config) or (configmanager.get(host, "core", "anonymous_login") and (configmanager.get(host, "core", "disallow_s2s") ~= false)) }; + for option_name in pairs(host_config.core) do + if option_name:match("_ports$") then + log("warn", "%s: Option '%s' has no effect for virtual hosts - put it in global Host \"*\" instead", host, option_name); + end + end log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host); eventmanager.fire_event("host-activated", host, host_config); end |