mod_s2s_never_encrypt_blacklist/mod_s2s_never_encrypt_blacklist.lua
changeset 921 ef859c9d42c4
parent 531 2b71ba2739e0
child 922 661e2322b4df
equal deleted inserted replaced
920:f183de41b7c6 921:ef859c9d42c4
     1 -- Filter out servers which gets choppy and buggy when it comes to starttls.
     1 -- Filter out servers which gets choppy and buggy when it comes to starttls.
     2 
     2 
     3 local bad_servers = module:get_option_set("tls_s2s_blacklist")
     3 local bad_servers = module:get_option_set("tls_s2s_blacklist", {})
     4 local bad_servers_ip = module:get_option_set("tls_s2s_blacklist_ip")
     4 local bad_servers_ip = module:get_option_set("tls_s2s_blacklist_ip", {})
     5 
     5 
     6 local function disable_tls_for_baddies_in(event)
     6 local function disable_tls_for_baddies_in(event)
     7 	if bad_servers:contains(event.origin.to_host) or bad_servers_ip:contains(event.origin.conn:ip())
     7 	if bad_servers:contains(event.origin.to_host) or bad_servers_ip:contains(event.origin.conn:ip())
     8 		then event.origin.conn.starttls = nil end
     8 		then event.origin.conn.starttls = nil end
     9 end
     9 end