Software /
code /
prosody
Comparison
core/hostmanager.lua @ 1467:fc420e9585c2
hostmanager: Add disallow_s2s to config, defaults to false unless anonymous_login is enabled, then defaults to true
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 03 Jul 2009 04:24:30 +0100 |
parent | 1188:fa48e69c4786 |
child | 1522:569d58d21612 |
comparison
equal
deleted
inserted
replaced
1466:95f8024c77fc | 1467:fc420e9585c2 |
---|---|
25 end | 25 end |
26 | 26 |
27 eventmanager.add_event_hook("server-starting", load_enabled_hosts); | 27 eventmanager.add_event_hook("server-starting", load_enabled_hosts); |
28 | 28 |
29 function activate(host, host_config) | 29 function activate(host, host_config) |
30 hosts[host] = {type = "local", connected = true, sessions = {}, host = host, s2sout = {}, events = events_new() }; | 30 hosts[host] = {type = "local", connected = true, sessions = {}, |
31 host = host, s2sout = {}, events = events_new(), | |
32 disallow_s2s = configmanager.get(host, "core", "disallow_s2s") | |
33 or (configmanager.get(host, "core", "anonymous_login") | |
34 and (configmanager.get(host, "core", "disallow_s2s") ~= false)) | |
35 }; | |
31 log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host); | 36 log((hosts_loaded_once and "info") or "debug", "Activated host: %s", host); |
32 eventmanager.fire_event("host-activated", host, host_config); | 37 eventmanager.fire_event("host-activated", host, host_config); |
33 end | 38 end |
34 | 39 |
35 function deactivate(host) | 40 function deactivate(host) |