I have configured as following for denying access to .exe files
acl POST method post
acl html rep_mime_type text/html
acl EXE urlpath_regex \.[eE][xX][eE]
http_access deny EXE !POST
It's working perfectly, but the problem is that the users are not able to
access http://mail.myshika.com
So when I checked the site, I realized that the site address is actually
passing the link http://mail.myshika.com/cgi-bin/login.exe . As it contain
login.exe, the squid denies the access to the site.
Now my question is how to allow the users to access that site, at the same
time the squid should deny .exe files.
Thanks in advance