> -----Original Message----- > From: saravanan ganapathy [mailto:sarav_gsa@xxxxxxxxx] > Sent: Friday, March 25, 2005 4:15 AM > To: squid-users@xxxxxxxxxxxxxxx > Subject: [squid-users] mime type based blocking on squid > > > Hai, > > I configured as the following in my squid-5.STABLE9 > > acl audiomime rep_mime_type -i > ^application/audio/mpeg$ > acl audiomime1 rep_mime_type -i application/audio/mpeg > > > http_access deny audiomime all > http_access deny audiomime1 all > > http_reply_access deny audiomime all > http_reply_access deny audiomime1 all > > But its not working. Still my squid allows audio/mpeg > type of downloads. The squid log shows the correct > file type (audio/mpeg). But it is not denied. > > What would be the problem? > > Sarav Currently you are blocking a mime_type of "application/audio/mpeg", when you should be blocking "audio/mpeg". As you said, the squid log shows the correct file type. Chris