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
This archive was generated by hypermail pre-2.1.9 : Mon Jan 01 2007 - 12:00:01 MST