Maybe you need an additional reverseproxy in your virtualhost section
ie.
Code:
<VirtualHost *:80>
ServerAlias webmail.*
SecFilterEngine Off
ProxyPass / http://zcs1.domain.com:81/
ProxyPassReverse / http://zcs1.domain.com:81/
ProxyPass /m/ http://zcs1.domain.com:81/m/
ProxyPassReverse /m/ http://zcs1.domain.com:81/m/
ErrorLog /var/log/httpd/zimbra-error.log
</VirtualHost> Let me know if you have already got this and I can help you further
Otherwise have you setup you dns entry to include webmail. zcs1.domain.com ?
Would probably look something like:
Code:
@ 14400 IN SOA zcs1.domain.com. you. zcs1.domain.com. (
2008030401; #serial
7200; #Refresh
1800; #Update
2600000; #Expiry
3600; #Minimum
);
;
@ IN NS zcs1.domain.com;
@ IN NS zcs2.domain.com.;
;
@ IN MX 0 zcs1.domain.com.;
;
ns A x.x.x.x
www A x.x.x.x
webmail A x.x.x.x
zcs1.domain.com. TXT "v=spf1 a mx ~all" Good luck
Costa