From owner-freebsd-questions@FreeBSD.ORG Sun Apr 20 03:17:00 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17DF737B407 for ; Sun, 20 Apr 2003 03:16:55 -0700 (PDT) Received: from nebula.skynet.be (nebula.skynet.be [195.238.2.112]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1359143FA3 for ; Sun, 20 Apr 2003 03:16:54 -0700 (PDT) (envelope-from theo.wolfs@skynet.be) Received: from theo (2.96-136-217.adsl.skynet.be [217.136.96.2]) id h3KAGmf7006914 for ; Sun, 20 Apr 2003 12:16:48 +0200 (envelope-from ) Message-ID: <000001c30725$ff650220$026088d9@theo> From: "Theo Wolfs" To: Date: Sun, 20 Apr 2003 12:16:54 +0200 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="----=_NextPart_000_0005_01C30736.BB2B2060" X-Priority: 3 X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-Mailman-Approved-At: Mon, 21 Apr 2003 16:59:56 -0700 X-Content-Filtered-By: Mailman/MimeDel 2.1.1 Subject: Problem with CVSWEB interference X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Apr 2003 10:17:00 -0000 This is a multi-part message in MIME format. ------=_NextPart_000_0005_01C30736.BB2B2060 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Hello, Hopely you can help me with a problem, Since a few days, every time I open IE6 on my windows2000 machine, the = browser opens with the message "downloading file /downloading in = progress from breedband telenet[1]" Than comes the question : Open or save the file or Cancel. Whatever I = choose, IE6 will shut down, and there's no way to surf. Re-instaling IE6 = didn't help. Cleaning up all related cache and folders does not help. I managed to open the file, and it pointed to CVSWEB.=20 /* PAC FILE: VERSION MANAGEMENT WITH CVS * USE CVSWEB FOR UPDATING !!! * * Proxy autoconfig file=20 * * $Revision: 1.24 $ * $Date: 2003/01/28 10:50:45 $ * */ function FindProxyForURL(url, host) { // Direct connections to non-FQDN hosts if (isPlainHostName(host)) { return "DIRECT"; } // Direct connections to local subnets if (isInNet(host, "195.130.128.0", "255.255.224.0") || isInNet(host, "212.123.0.0" , "255.255.224.0") || isInNet(host, "213.224.0.0" , "255.255.0.0" ) || isInNet(host, "213.118.0.0" , "255.254.0.0") || isInNet(host, "81.82.0.0" , "255.254.0.0") || isInNet(host, "10.0.0.0" , "255.0.0.0") || isInNet(host, "172.16.0.0" , "255.240.0.0") || isInNet(host, "192.168.0.0" , "255.255.0.0") || isInNet(host, "127.0.0.0" , "255.255.255.0")) { if (host !=3D "gamesproxy.telenet-ops.be") { return "DIRECT"; } } //Microsoft does not understand DIRECT //URLs that have microsoft in them go via proxies if (shExpMatch(url, "*microsoft*")) { return "PROXY proxy.telenet.be:8080;" + "PROXY proxybu1.telenet.be:8080;" + "PROXY proxybu2.telenet.be:8080"; } // HTTPS goes straight. if (shExpMatch(url, "https:*")) { return "DIRECT"; } // proxy servers are now divided in two backup groups return "PROXY proxy.telenet.be:8080;" + "PROXY proxybu1.telenet.be:8080;" + "PROXY proxybu2.telenet.be:8080"; } =20 If I change my Start-up page of IE6 into per example www.yahoo.com , the = lines in the file change also and point to the yahoo site. What is this, how did it happened, and what must I do to get rid of = this.=20 Thank you, Theo Wolfs Belgium theo.wolfs@skynet.be ------=_NextPart_000_0005_01C30736.BB2B2060--