diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-05-11 00:56:18 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-05-11 00:56:18 +0100 |
commit | f73fb5fdd4a9f66a5539c33be875d4d9fe63b5d1 (patch) | |
tree | fc2779e5341c572deba0f875a624f5057c09d82e /core/hostmanager.lua | |
parent | 765f6f8a4c7cc0e9c11a25d4b023567abd3a14b0 (diff) | |
download | prosody-f73fb5fdd4a9f66a5539c33be875d4d9fe63b5d1.tar.gz prosody-f73fb5fdd4a9f66a5539c33be875d4d9fe63b5d1.zip |
mod_s2s, mod_auth_anonymous, hostmanager: Remove disallow_s2s flag, deprecate the config option of the same name (disable mod_s2s instead), and add 'allow_anonymous_s2s' to separately control s2s for anonymous users
Diffstat (limited to 'core/hostmanager.lua')
-rw-r--r-- | core/hostmanager.lua | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/core/hostmanager.lua b/core/hostmanager.lua index a9db1a92..66275d96 100644 --- a/core/hostmanager.lua +++ b/core/hostmanager.lua @@ -74,7 +74,6 @@ function activate(host, host_config) s2sout = {}; events = events_new(); dialback_secret = configmanager.get(host, "core", "dialback_secret") or uuid_gen(); - disallow_s2s = configmanager.get(host, "core", "disallow_s2s"); send = host_send; }; if not host_config.core.component_module then -- host |