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

This commit is contained in:
Matthew Wild 2012-05-11 00:56:18 +01:00
parent 573a691a31
commit 0b4567a6f1
3 changed files with 4 additions and 4 deletions

View file

@ -51,7 +51,7 @@ local function dm_callback(username, host, datastore, data)
return username, host, datastore, data;
end
if module:get_option_boolean("disallow_s2s", true) then
if not module:get_option_boolean("allow_anonymous_s2s", false) then
module:hook("route/remote", function (event)
return false; -- Block outgoing s2s from anonymous users
end, 300);