if usage auto-proxy dones not work search maps

Bug #1328425 reported by fedsed
6
This bug affects 1 person
Affects Status Importance Assigned to Milestone
my-weather-indicator
New
Undecided
Unassigned

Bug Description

Maps search does not work if you are using auto-proxy.
Settings: auto_url_proxy="http://server.my/proxy/proxy.pac"

proxy.pac

function FindProxyForURL(url, host) {

if (shExpMatch(url, "*.domain.my*")) {
    return "DIRECT";
}

if (isPlainHostName(host) ||
        shExpMatch(host, "*.local") ||
        isInNet(dnsResolve(host), "172.16.0.0", "255.255.0.0") ||
        isInNet(dnsResolve(host), "127.0.0.0", "255.255.255.0")) {
    return "DIRECT";
}

return "PROXY proxy.domain.my:3128";

}

To post a comment you must log in.
This report contains Public information  
Everyone can see this information.

Other bug subscribers

Remote bug watches

Bug watches keep track of this bug in other bug trackers.