Merge with waqas
[prosody.git] / core / hostmanager.lua
index c7b975d1f6dcebc141ff7f8294c88d29436d5455..ba363273f90c8ad3d1b1216017aab4a63fe11b0a 100644 (file)
@@ -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