Re: [squid-users] Re: proxy.pac 'and' statement

From: Henrik Nordstrom <henrik@dont-contact.us>
Date: Thu, 14 Dec 2006 15:11:35 +0100

tor 2006-12-14 klockan 08:52 -0500 skrev John Halfpenny:
> Well spotted. Ok, I put the quotes back in (!) but it still won't work. What I want to do is IF this AND this THEN that
>
> But i can't find anything which notes how to do it!
>
> We now have-
>
> if (shExpMatch(url, "https://*.xyz.com")) && (myIpAddress() == "10.1.4.4"){
> return "DIRECT";
> }
>
> Anyone have any experience in this?

The above shExpMatch only matches https://[anything].xyz.com, not
https://www.xyz.com/image.gif etc..

Try

if (shExpMatch(host, "*.xyz.com) && myIpAddress() == "10.1.4.4") {
...

Regards
Henrik

Received on Thu Dec 14 2006 - 07:11:47 MST

This archive was generated by hypermail pre-2.1.9 : Mon Jan 01 2007 - 12:00:01 MST