[squid-users] Blocking Searches with squidguard

2006-07-20 Thread Brian Gregory
Is there any way I can configure squidguard 1.2.0 to block searches such as: http://www.google.co.uk/search?q=boobs and http://www.google.co.uk/search?stuff=some+stuff&q=boobs&morestuff=more+stuff Where boobs is any one of a selection of forbidden words? -- Brian Gregory. [EMAIL PROTECTED]

Re: [squid-users] Blocking Searches with squidguard

2006-07-20 Thread Rikunj
Try this. acl badsearch url_regex "/usr/local/squid/etc/badsearch.txt"(put all words you want to block in this file) deny_info ERR_ACCESS_DENIED badsearch http_access deny badsearch Regards, Rikunj Brian Gregory wrote: Is there any way I can configure squidguard 1.2.0 to block searches such

Re: [squid-users] Blocking Searches with squidguard

2006-07-26 Thread Brian Gregory
Rikunj wrote: Try this. acl badsearch url_regex "/usr/local/squid/etc/badsearch.txt"(put all words you want to block in this file) deny_info ERR_ACCESS_DENIED badsearch http_access deny badsearch Regards, Rikunj Brian Gregory wrote: Is there any way I can configure squidguard 1.2.0 to block

Re: [squid-users] Blocking Searches with squidguard

2006-07-27 Thread Brian Gregory
Rikunj wrote: Yes, it is. * url_regex*: URL regular expression pattern matching http://www.squid-cache.org/Doc/FAQ/FAQ-10.html#ss10.4 Rikunj I don't think I'm going to get this just by looking at the documentation. I only understand technical things when I begin to see what was going on in

Re: [squid-users] Blocking Searches with squidguard

2006-07-27 Thread SM
At 04:55 27-07-2006, Brian Gregory wrote: I don't think I'm going to get this just by looking at the documentation. I only understand technical things when I begin to see what was going on in the mind of the person who designed it. Here all the documentation seems to assume you already understa