aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Cirillo <maranda@lightwitch.org>2012-05-10 12:54:37 +0000
committerMarco Cirillo <maranda@lightwitch.org>2012-05-10 12:54:37 +0000
commitcc7ad75d41df63cd968f5b2ffd920cd99671274f (patch)
treedf6d54dc6e27a1ceaf0b7dcf4003fb79a3dcbb50
parent560420165a457a4f853da7a91bc779fca9d0488a (diff)
downloadprosody-cc7ad75d41df63cd968f5b2ffd920cd99671274f.tar.gz
prosody-cc7ad75d41df63cd968f5b2ffd920cd99671274f.zip
mod_auth_anonymous: add disallow_s2s to the host object if s2s communication is disallowed.
-rw-r--r--plugins/mod_auth_anonymous.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_auth_anonymous.lua b/plugins/mod_auth_anonymous.lua
index 55398d8a..5df81f24 100644
--- a/plugins/mod_auth_anonymous.lua
+++ b/plugins/mod_auth_anonymous.lua
@@ -52,6 +52,7 @@ local function dm_callback(username, host, datastore, data)
end
if module:get_option_boolean("disallow_s2s", true) then
+ hosts[module.host].disallow_s2s = true;
module:hook("route/remote", function (event)
return false; -- Block outgoing s2s from anonymous users
end, 300);