Bert Rapp wrote:
Here's an example of how I expect to use it:
acl mozacl browser MOZILLA
http_access allow mozacl
http_access deny all
But I think this would block access completely to IE.
You can use multiple acls to make it happen. My head's not functioning
fully right now (so you should double check this), but something like
this should do it:
acl mazacl browser MOZILLA
acl exploder browser <whatever IE's ID is here>
acl sitelist dstdomain <path to filename listing sites allowed>
http_access allow mozacl
http_access allow exploder sitelist
http_access deny all
Tim B