mod_s2s: Close incoming s2s with stream error when secure and we don't trust their certificate
authorMatthew Wild <mwild1@gmail.com>
Mon, 01 Apr 2013 14:45:59 +0100
changeset 5408 767ecb0091a6
parent 5407 c9ff345a27e7
child 5409 8e98a58ab6a3
mod_s2s: Close incoming s2s with stream error when secure and we don't trust their certificate
plugins/mod_s2s/mod_s2s.lua
--- a/plugins/mod_s2s/mod_s2s.lua	Sun Mar 31 22:40:01 2013 +0100
+++ b/plugins/mod_s2s/mod_s2s.lua	Mon Apr 01 14:45:59 2013 +0100
@@ -632,7 +632,11 @@
 	
 	if must_secure and not session.cert_identity_status then
 		module:log("warn", "Forbidding insecure connection to/from %s", host);
-		session:close(false);
+		if session.direction == "incoming" then
+			session:close({ condition = "not-authorized", text = "Your server's certificate is invalid, expired, or not trusted by"..session.to_host });
+		else -- Close outgoing connections without warning
+			session:close(false);
+		end
 		return false;
 	end
 end