view mod_s2s_never_encrypt_blacklist/mod_s2s_never_encrypt_blacklist.lua @ 412:8963f4026f3a

mod_s2s_never_encrypt_blacklist: first commit.
author Marco Cirillo <maranda@lightwitch.org>
date Fri, 02 Sep 2011 22:51:28 +0000
parents
children e4d33cdfed21
line wrap: on
line source

-- Filter out servers which gets choppy and buggy when it comes to starttls.

local bad_servers = module:get_option_set("tls_s2s_blacklist");

local function disable_tls_for_baddies(event)
	if bad_servers:contains(event.origin.to_host) then event.origin.conn.starttls = nil; end
end

module:hook("stanza/http://etherx.jabber.org/streams:features", disable_tls_for_baddies, 510)