Hi,
we are using Squid/2.3.STABLE3 in our company. I created an automatic
proxy configuration file. It works fine in the browser part, but
accessing an IMAP mail account with Mail/News results in the following
error in the mail window:
---------------------------------------------
ERROR
The requested URL could not be retrieved
While trying to retrieve the URL:
NONE:[EMAIL PROTECTED]:993/fetch%3EUID%3E/INBOX%3E163192399
The following error was encountered:
* Unsupported Request Method and Protocol
---------------------------------------------
When I set Mozilla using the manual proxy cofiguration the IMAP account
can be accessed without problems.
Here's my autoconfiguration file:
--------------------------------------
function FindProxyForURL (url,host)
{
if (isInNet(host, "10.0.0.0", "255.255.0.0"))
return "DIRECT";
if (isInNet(host, "127.0.0.1", "255.255.255.255"))
return "DIRECT";
if (isInNet(host, "62.156.183.0", "255.255.255.0"))
return "DIRECT";
return "PROXY 10.0.0.51:3128; DIRECT";
}
--------------------------------------
Is it a Squid problem? My autoconfiguration file? Or has Mozilla
problems with Squid?
Help appreciated.
- Holger