On Mon, Apr 04, 2005 at 03:44:48PM +0200, zrr wrote:
I just reconfigured sqwebmail without ssl Support. But I get the same error.
My Apache Access-Log tells me:
127.0.0.1 <http://127.0.0.1> - - [04/Apr/2005:15:42:12 +0200] "GET
/cgi-bin/sqwebmail HTTP/1.1" 303 49
my configure options are:
--with-aspell=/usr/lib/aspell --enable-hardtimeout=3600
--enable-imageurl=/sqwebmail
--enable-imagedir=/var/www/localhost/htdocs/sqwebmail
--enable-cgibindir=/var/www/localhost/cgi-bin/
I have no idea what 303 49 means. 49 must be some Byte location/code?
303 is a 'See Other' response (see RFC 2616). It's probably sqwebmail
issuing its initial redirect. If so this is perfectly normal.
Try:
$ telnet localhost 80
GET /cgi-bin/sqwebmail HTTP/1.0 << CASE-SENSITIVE
Host: localhost
<blank line, i.e. just hit 'enter'>
You'll probably get back
<H1>Found</H1>
The document has moved <A
HREF="http://foo.bar/cgi-bin/sqwebmail?index=1">here</A>.<P>
If so, that's OK: but have a look at the hostname where I've put 'foo.bar'
and see if it makes sense in your environment, more specifically if it makes
sense to the web client which is connecting. If not, you may need to update
your system hostname and/or put something in /etc/hosts to make it work.
Brian.