10 Feb
2004
10 Feb
'04
12:07 p.m.
After finally getting my rewrite rules set up within Apache to access Zope, I now find the GUI for an associated Mailman mailing list also gets redirected.
How do I prevent Mailman requests from being rewritten to access Zope?
This is one way to do it. Add this do your <VirtualHost>: RewriteEngine On Alias /pipermail/ /path/to/mailman/archives/public/ ScriptAlias /mailman/ /path/to/mailman/cgi-bin/ ProxyPass /mailman/ http://mail.yoursite.com/mailman/ ProxyPass /pipermail/ http://mail.yoursite.com/pipermail/ And make a new VirtualHost for mail.yoursite.com Tim