This is one of those, I'm not sure whether to put in the original link or start a new one. Some one can move it if they like.
I have followed the instructions at
http://forums.contribs.org/index.php/topic,40075.0.html for ProxyPass for Exchange / Outlook Web Access. This has worked fine for some time. However recently we upgraded the computer and the server that is doing exchange from the name “exchange” to “xch”. The IP address for this computer has changed also to 10.1.0.4 from .2 .
Internally we get to the OWA by typing in
https://xch/exchange. From the outside however the web access of course does not work now since the changes.
I went to the file ,
etc/e-smith/templates-custom/etc/httpd/conf/httpd.conf
And changed all the references from 10.1.0.2 to 10.0.4
I then went to
\\10.1.0.17\primary\html\index.htm (this is the sme box accessible from internal network.)
.and made changes to the web page that people will get to when they go to mail.myserver.com so that it automatically takes people to
https://xch/exchange after 3 seconds, (remember it use to be
https://exchange/exchange )
then ran,
expand-template /etc/httpd/conf/httpd.conf
then ran
sv restart httpd-e-smith
I have verified that the changes were made to the /etc/httpd/conf/httpd.conf file.
It is my belief that I have to make some changes to the proxy pass settings to match the new name XCH, but I'm not sure where I need to make changes to the httpd.conf file.
Eg currently it looks like this snippet …
OWA % character in email subject fix
RewriteEngine On
RewriteMap percentsubject int:escape
RewriteCond $1 ^/exchange/.*\%.*$
RewriteRule (/exchange/.*) ${percentsubject:$1} [P]
#OWA
ProxyPass /exchange
https://10.1.0.4/exchangeProxyPassReverse /exchange
https://10.1.0.4/exchangeProxyPass /Exchange
https://10.1.0.4/exchangeProxyPassReverse /Exchange
https://10.1.0.4/exchangeProxyPass /exchweb
https://10.1.0.4/exchwebProxyPassReverse /exchweb
https://10.1.0.4/exchwebProxyPass /public
https://10.1.0.4/publicProxyPassReverse /public
https://10.1.0.4/publicProxyPass /iisadmpwd
https://10.1.0.4/iisadmpwdProxyPassReverse /iisadmpwd
https://10.1.0.4/iisadmpwdBut I think I have to change one or more the “exchange” strings to "xch" I have tried to read up on proxy pass it’s a bit over me.
Can anyone tell me what I need to change, or perhaps where I’m wrong.
Thank you.