On Fri, 3 Jun 2005, B wrote:
my intention is to have squid not tell the user what is going on in the
background. all acl stuff tells the user access denied because of blabla or
something similar. in some cases i would prefer the user simply to not being
able to log in.
You don't need to change the authentication for this.
To reject a successful login all you need to do is to deny the request
with a proxy_auth type ACL.
acl everyone proxy_auth REQUIRED
acl bannedsite dstdomain .mondson.de
http_access deny bannedsite everyone
this will make it look like your login always failed when trying to access
the mondson.de domain.
Regards
Henrik