mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_s2s: Prevent unhandled stanza handler from complaining about stream features on aborted connections
I have no idea why I wrote return false in e5945fb5b71f
This commit is contained in:
parent
53cde4a8a8
commit
35d07425e3
1 changed files with 2 additions and 2 deletions
|
@ -196,14 +196,14 @@ function module.add_host(module)
|
|||
condition = "policy-violation",
|
||||
text = "Encrypted server-to-server communication is required but was not offered",
|
||||
}, nil, "Could not establish encrypted connection to remote server");
|
||||
return false;
|
||||
return true;
|
||||
elseif not session.dialback_verifying then
|
||||
session.log("warn", "No SASL EXTERNAL offer and Dialback doesn't seem to be enabled, giving up");
|
||||
session:close({
|
||||
condition = "unsupported-feature",
|
||||
text = "No viable authentication method offered",
|
||||
}, nil, "No viable authentication method offered by remote server");
|
||||
return false;
|
||||
return true;
|
||||
end
|
||||
end, -1);
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue