mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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:
parent
573a691a31
commit
0b4567a6f1
3 changed files with 4 additions and 4 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue