Merge with waqas
[prosody.git] / core / hostmanager.lua
index 97c742da5f133df86007bcb7d9fcabe2ff1a5de4..ba363273f90c8ad3d1b1216017aab4a63fe11b0a 100644 (file)
@@ -1,7 +1,16 @@
+-- Prosody IM
+-- Copyright (C) 2008-2009 Matthew Wild
+-- Copyright (C) 2008-2009 Waqas Hussain
+-- 
+-- This project is MIT/X11 licensed. Please see the
+-- COPYING file in the source package for more information.
+--
+
 
 local hosts = hosts;
 local configmanager = require "core.configmanager";
 local eventmanager = require "core.eventmanager";
+local events_new = require "util.events".new;
 
 local log = require "util.logger".init("hostmanager");
 
@@ -26,7 +35,17 @@ end
 eventmanager.add_event_hook("server-starting", load_enabled_hosts);
 
 function activate(host, host_config)
-       hosts[host] = {type = "local", connected = true, sessions = {}, host = host, s2sout = {} };
+       hosts[host] = {type = "local", connected = true, sessions = {}, 
+                      host = host, s2sout = {}, events = events_new(), 
+                      disallow_s2s = configmanager.get(host, "core", "disallow_s2s") 
+                        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