comparison mod_s2s_never_encrypt_blacklist/mod_s2s_never_encrypt_blacklist.lua @ 921:ef859c9d42c4

mod_s2s_never_encrypt_blacklist: supply an empty table as default value, fixes traceback. (Thanks Tobias)
author Marco Cirillo <maranda@lightwitch.org>
date Thu, 07 Mar 2013 14:16:55 +0100
parents 2b71ba2739e0
children 661e2322b4df
comparison
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