aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2013-03-25 19:08:15 +0100
committerKim Alvefur <zash@zash.se>2013-03-25 19:08:15 +0100
commitae5806cd6798cbc1374f4713c42bb003a1f13c3d (patch)
tree4c6fa9a07b609b9a0d54fa83a1c0674c478f5385 /plugins
parent5c16f18d7269e720647a602864245bbbb70452ed (diff)
downloadprosody-ae5806cd6798cbc1374f4713c42bb003a1f13c3d.tar.gz
prosody-ae5806cd6798cbc1374f4713c42bb003a1f13c3d.zip
mod_s2s: Reset secure flag on new connection attempt
Diffstat (limited to 'plugins')
-rw-r--r--plugins/mod_s2s/s2sout.lib.lua4
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();