Henrik,
We now have the ability to use (https) --->
(Squidbox)---http--->(Exchange 2000 OWA) BUT we need the ability for our
users to type (http)---->(Squidbox) and get redirected to (https) at the
client automatically so the client can have a secure session.
We have looked at the redirect program code below but it does not work:
#!/usr/local/bin/perl
$|=1;
while (<>) {
@X = split;
$url = $X[0];
if ($url =~ /^http:\/\/internal\.foo\.com/) {
$url =~ s/^http/https/;
$url =~ s/internal/secure/;
print "302:$url\n";
} else {
print "$url\n";
}
}
Any help or suggestions would be useful....
Jimmy A.
-----Original Message-----
From: Henrik Nordstrom [mailto:hno@squid-cache.org]
Sent: Thursday, January 29, 2004 6:15 AM
To: Arbelaez, Jim
Cc: squid-dev@squid-cache.org
Subject: Re: Squid-3 Release Date\Questions
On Tue, 27 Jan 2004, Arbelaez, Jim wrote:
> What is the ETA for stable release of "Squid-3"?
Good question. I don't have an answer at the moment. Robert?
> We are wanting to use this version in a proxy configuration for
> Microsoft Outlook Web Access servers over SSL. Our goal is to place
> only unix based systems in our DMZ and not Windows based.
>
> Note: If you have the information to provide concerning the SSL fix
> and Squid 2.5 stable proxying exchange 2000 Outlook Web Access it
would
> be much appreciated.
Squid-2.5 + SSL update works for https->https proxying of OWA with the
help of a small redirector to clean up the URLs in the reverse proxy,
but
lacks some features required for https->http proxying of OWA.
Regards
Henrik
Received on Thu Feb 05 2004 - 02:51:47 MST
This archive was generated by hypermail pre-2.1.9 : Mon Mar 01 2004 - 12:00:04 MST