acl proxy_a_users external win_domain_group group_proxy_a acl proxy_a_sites dstdom_regex [-i] "c:/squid/lists/proxy_a_sites.txt" acl proxy_b_users external win_domain_group group_proxy_b acl proxy_b_sites dstdom_regex [-i] "c:/squid/lists/proxy_b_sites.txt"
Why are you using dstdom_regex as the acl type rather than simply dstdomain? Your url format in the *.txt files fits the pattern suggested for dstdomain rather than the regexp version (See 'dstdomain' here http://www.visolve.com/squid/squid30/accesscontrols.php#acl). Remember the period in a rexexp is a lazy operator. there are two in each of your url entries. This may be causing the issue. Chris