On 6/10/2016 11:56 a.m., Jose Torres-Berrocal wrote: > Correcting typo: > > And placing it inside a whitelist.acl file: > acl whitelist2 dstdom_regex -i "whitelist.acl" > > Where whitelist.acl content: > ^familymedicinepr\.com$ > ^mail\.yahoo\.com$ > ^neodecksoftware\.com$ > ^office\.net$ > \.familymedicinepr\.com$ > \.mail\.yahoo\.com$ > \.neodecksoftware\.com$ > \.office\.net$ > Yes. There is a simpler way if you are going to insisit on regex instead of dstdomain. Starting the pattern with an optional '.' character: \.? So whitelist.acl content: \.?familymedicinepr\.com$ \.?mail\.yahoo\.com$ \.?neodecksoftware\.com$ \.?office\.net$ Using dstdomain in this case is better though since the comparison is shorter and faster than regex. Amos _______________________________________________ squid-users mailing list squid-users@xxxxxxxxxxxxxxxxxxxxx http://lists.squid-cache.org/listinfo/squid-users