Nicolas Riendeau wrote:
It would be nice if squid could use (SU)RBL though... (-;
Native SURBL support for Squid would be a GoodThing(TM) indeed. Until then, if the SURBL team provided lists of blacklisted domains, one could pipe the data into a script along the lines of
#!/usr/bin/perl my $acl_name = 'known_spammer_domains'; while (<>) { print "acl $acl_name dstdomain $_" unless /^[#\s]{0,}$/; } print "http_access deny $acl_name\n";
to generate local Squid rules...