diff options
author | Kim Alvefur <zash@zash.se> | 2013-03-25 19:08:15 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-03-25 19:08:15 +0100 |
commit | 854db75cc239f511d266325edf15bd3182d68519 (patch) | |
tree | 4c6fa9a07b609b9a0d54fa83a1c0674c478f5385 | |
parent | 82e45d16423dd6543c4c307f65c311545b8895a3 (diff) | |
download | prosody-854db75cc239f511d266325edf15bd3182d68519.tar.gz prosody-854db75cc239f511d266325edf15bd3182d68519.zip |
mod_s2s: Reset secure flag on new connection attempt
-rw-r--r-- | plugins/mod_s2s/s2sout.lib.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/mod_s2s/s2sout.lib.lua b/plugins/mod_s2s/s2sout.lib.lua index f89c5fc4..a22846db 100644 --- a/plugins/mod_s2s/s2sout.lib.lua +++ b/plugins/mod_s2s/s2sout.lib.lua @@ -271,6 +271,10 @@ function s2sout.make_connect(host_session, connect_host, connect_port) local from_host, to_host = host_session.from_host, host_session.to_host; + -- Reset secure flag in case this is another + -- connection attempt after a failed STARTTLS + host_session.secure = nil; + local conn, handler; if connect_host.proto == "IPv4" then conn, handler = socket.tcp(); |