Closed
Bug 215502
Opened 21 years ago
Closed 21 years ago
PAC: first proxy connection does not work
Categories
(Core :: Networking, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 100022
People
(Reporter: floeff, Assigned: darin.moz)
Details
User-Agent:
Build Identifier: 1.4 Final
I have set up a proxy script in Mozilla which is set to
http://myproxy/proxy.pac
This file contains:
function FindProxyForURL(url, host)
{
if (isPlainHostName(host) ||
dnsDomainIs(host, ".mydomain"))
return "DIRECT";
else
return "PROXY myproxy:3128; DIRECT";
}
When I start up Mozilla normally, it works just fine. However, if I open it via
a link, e.g. a link in a message in Outlook Express (6.0 SP1), the first attempt
in Mozilla ALWAYS brings a "Could not connect" message. When I reload the page,
it works.
Seems to me, that there is some timeout that's wrong?
Reproducible: Always
Steps to Reproduce:
1. Open Outlook Express
2. Click on a link in a message
3. Watch the error message
Actual Results:
an error message occurec, "Could not connect"
Expected Results:
open the page
Comment 1•21 years ago
|
||
*** This bug has been marked as a duplicate of 100022 ***
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → DUPLICATE
V/dupe.
Status: RESOLVED → VERIFIED
Component: Networking: HTTP → Networking
QA Contact: core.networking.http → benc
Summary: first proxy connection does not work → PAC: first proxy connection does not work
You need to log in
before you can comment on or make changes to this bug.
Description
•