Duncan Drury wrote: > >There is no access log entry after the one I posted.
That indicates that the redirect is going to a different server or at least to a different virtual host with a with a different TransferLog. >I've changed the >redirect to point to >/mailman/admin<http://www.example.com/mailman/listinfo>instead of >/mailman/listinfo and it works. That's strange. >My suspicion is that for some reason listinfo is giving the wrong content >type, so the browser is downloading the data rather than displaying it. The >output is mostly binary data. I'll post it if anyone is interested. Whatever is happening, it is Apache, not the browser that is doing it. The ScriptAlias /mailman/ /usr/lib/mailman/cgi-bin/ should tell Apache that a GET of any path that begins with /mailman/x should execute the corresponding /usr/lib/mailman/cgi-bin/x CGI and return the output of that CGI to the browser. In your case, it is serving the content of /usr/lib/mailman/cgi-bin/listinfo (or some listinfo) instead of the output from executing it. No matter what content-type header it sends, the wrong thing will result. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org Security Policy: http://wiki.list.org/x/QIA9
