Re: [squid-users] restricting download of .exe files ....

2003-07-19 Thread Henrik Nordstrom
On Friday 18 July 2003 22.54, Kenn Murrah wrote: > > >acl progs urlpath_regex -i \.exe$ > >http_access deny progs > > Anyway, let me ask a followup question what if I want to > disallow all .exe files EXCEPT those from microsoft.com? acl progs urlpath_regex -i \.exe$ acl miscrosoft dstdomain

Re: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Adam Aube
>Thanks for the help You're quite welcome. >(I actually did try to find this answer but couldn't and decided to > ask the list for its help (thinking that was, in fact, the purpose of > the list.)) Yes, that is the purpose of the list. However, you did not indicate in your question that y

Re: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Schelstraete Bart
questions that passes this list. -Original Message- From: Schelstraete Bart [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 4:16 PM To: Kenn Murrah Cc: 'squid' Subject: Re: [squid-users] restricting download of .exe files Thanks for the help (I actually did try to

RE: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Chijioke Kalu
Original Message Follows From: "Adam Aube" <[EMAIL PROTECTED]> To: "'squid'" <[EMAIL PROTECTED]> Subject: RE: [squid-users] restricting download of .exe files Date: Fri, 18 Jul 2003 15:57:28 -0400 MIME-Version: 1.0 Received: from squid-

RE: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Mark A Lewis
quid-users] restricting download of .exe files > Thanks for the help (I actually did try to find this answer but > couldn't ... and decided to ask the list for its help (thinking that > was, in fact, the purpose of the list.)) > > Anyway, let me ask a followup question .

Re: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Schelstraete Bart
Thanks for the help (I actually did try to find this answer but couldn't ... and decided to ask the list for its help (thinking that was, in fact, the purpose of the list.)) Anyway, let me ask a followup question what if I want to disallow all .exe files EXCEPT those from microsoft.com?

Re: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Kenn Murrah
Adam Aube wrote: How do I block the download of .exe files via the browser? I want to block .exe, zip, and other potentially executable files ... acl progs urlpath_regex -i \.exe$ http_access deny progs The -i makes the matching case insensitive, and the $ makes it match at the end of the l

RE: [squid-users] restricting download of .exe files ....

2003-07-18 Thread Adam Aube
> How do I block the download of .exe files via the browser? > I want to block .exe, zip, and other potentially executable > files ... acl progs urlpath_regex -i \.exe$ http_access deny progs The -i makes the matching case insensitive, and the $ makes it match at the end of the line. This was re