diff options
author | Kim Alvefur <zash@zash.se> | 2014-09-23 19:41:10 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-09-23 19:41:10 +0200 |
commit | c95613de573aea6cb4e6393a78b983be647b043a (patch) | |
tree | ac1ee53ca52deeb2fe7e66d517c143bdd85ecedf /plugins/mod_s2s/mod_s2s.lua | |
parent | 1e623068a5b67e4fff3e64e9090076472aa396bf (diff) | |
download | prosody-c95613de573aea6cb4e6393a78b983be647b043a.tar.gz prosody-c95613de573aea6cb4e6393a78b983be647b043a.zip |
mod_s2s: Close s2s connections that can not proceed due to mod_dialback not being present
Diffstat (limited to 'plugins/mod_s2s/mod_s2s.lua')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 7ff921d9..a50387fb 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -154,6 +154,10 @@ function module.add_host(module) -- so the stream is ready for stanzas. RFC 6120 Section 4.3 mark_connected(session); 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(); + return false; end end, -1); end |