Messenger express(iMS 5.2) through firewall using apache Proxypass and ProxyPassReverse
I am trying to get a reverse proxy setup to server my internal email to the intranet. I have this code in my http.conf:
<VirtualHost dmz.server.com>
ServerName email.internal.com
ProxyRequests on
ProxyPass /webmail/ http://email.internal.com:180/
ProxyPassReverse /webmail/ http://email.internal.com:180/
ProxyVia on
</VirtualHost>
when I enter http://dmz.server.com/webmail/ I get my login screen. I enter my id and password and click continue, the browser gives me url not found.
This url is now in the browser:
http://dmz.server.com/en/mail.html?sid=sfdefrafefwe&lang=en&cert=false
I can edit the url in the browser to add webmail as in:
http://dmz.server.com/webmail/en/mail.html?sid=sfdefrafefwe&lang=en&cer t=false
and the browser will then display my email folders.
Am I missing something here? How can I get the correct url to be returned with webmail in it?
How do others handle serving internal email to the internet? I also have iWS6.0, which i have not tried.
Any suggestions would be appreciated!

