I just downloaded the latest RC2 for RHEL4 : zcs-5.0.0_RC2_1745.RHEL4
Since everything else seems to work well with my CentOS4 box, here is the mod I made to the jetty.xml config to work.
** Your mileage may vary and this may or may not work in the final release **
/opt/zimbra/mailboxd/etc/jetty.xml.in
Find the XML container that starts with <Call name="addConnector"> between the HTTPBEGIN and HTTPEND comments
Just below the tag : <Set name="confidentialPort">%%zimbraMailSSLPort%%</Set> , insert a line with :
<Set name="Host">your.public.ip.addy</Set>
Then yank the entire section between HTTPBEGIN and HTTPEND and paste it below (in vi : "33G", "14yy", "46G", "p")
Now modify the "Host" tag to have 127.0.0.1
<Set name="Host">127.0.0.1</Set>
You now have two connectors, one that listens on the interface IP and one that listens on the loopback (required).
Hope that helps
