function FindProxyForURL(url, host)
{
if (isPlainHostName(host) || dnsDomainIs(host, "local.tld") ||
shExpMatch(host,"192.168.1.*"))
{
return "DIRECT";
}
else if (shExpMatch(host,"*.nflximg.com"))
{
return "DIRECT";
}
else
{
return "PROXY 192.168.1.3:3128";
}
}
IE8 has an internal list of tld's - res://urlmon.dll/ietldlist.xml
Make sure your conical names are well formed (don't use 2 character domain
names?[X])
I think also in IE8's Security Settings, Intranet Zone, you have to switch
off auto detection of intranet sites.
Regards.
"Awrightus" <awri...@gmail.com> wrote in message
news:ea8665ec-e6cc-4edd...@k19g2000yqc.googlegroups.com...