Many thanks, here you go:
jetty.xml.in
-----------
<!-- ================================================== ========= -->
<!-- Set connectors -->
<!-- ================================================== ========= -->
<!-- user services connector, no SSL -->
<!-- HTTPBEGIN
<Call name="addConnector">
<Arg>
<New id="http" class="org.mortbay.jetty.nio.SelectChannelConnecto r">
<Set name="port"><SystemProperty name="jetty.port" default="%%zimbraMailPort%%"/></Set>
<Set name="maxIdleTime">30000</Set>
<Set name="lowResourceMaxIdleTime">1000</Set>
<Set name="Acceptors">2</Set>
<Set name="confidentialPort">%%zimbraMailSSLPort%%</Set>
<Set name="Host">85.17.7.237</Set>
</New>
</Arg>
</Call>
HTTPEND -->
<!-- user services connector, SSL -->
<!-- HTTPSBEGIN -->
<Call name="addConnector">
<Arg>
<New id="ssl" class="org.mortbay.jetty.security.SslSelectChannel Connector">
<Set name="Port">%%zimbraMailSSLPort%%</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="lowResourceMaxIdleTime">1000</Set>
<Set name="Acceptors">2</Set>
<Set name="keystore"><SystemProperty name="jetty.home" default="."/>/etc/keystore</Set>
<Set name="password">@@mailboxd_keystore_password@@</Set>
<Set name="ExcludeCipherSuites">
<Array type="java.lang.String">
<Item>SSL_RSA_WITH_DES_CBC_SHA</Item>
<Item>SSL_DHE_RSA_WITH_DES_CBC_SHA</Item>
<Item>SSL_DHE_DSS_WITH_DES_CBC_SHA</Item>
<Item>SSL_RSA_EXPORT_WITH_RC4_40_MD5</Item>
<Item>SSL_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
<Item>SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
<Item>SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA</Item>
</Array>
</Set>
<Set name="Host">85.17.7.237</Set>
</New>
</Arg>
</Call>
<!-- HTTPSEND -->
<!-- ================================================== ============= -->
<!-- Admin services connector; requires SSL -->
<!-- ================================================== ============= -->
<Call name="addConnector">
<Arg>
<New id="admin" class="org.mortbay.jetty.security.SslSelectChannel Connector">
<Set name="Port">7071</Set>
<Set name="maxIdleTime">30000</Set>
<Set name="lowResourceMaxIdleTime">1000</Set>
<Set name="Acceptors">2</Set>
<Set name="keystore"><SystemProperty name="jetty.home" default="."/>/etc/keystore</Set>
<Set name="password">@@mailboxd_keystore_password@@</Set>
<Set name="ExcludeCipherSuites">
<Array type="java.lang.String">
<Item>SSL_RSA_WITH_DES_CBC_SHA</Item>
<Item>SSL_DHE_RSA_WITH_DES_CBC_SHA</Item>
<Item>SSL_DHE_DSS_WITH_DES_CBC_SHA</Item>
<Item>SSL_RSA_EXPORT_WITH_RC4_40_MD5</Item>
<Item>SSL_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
<Item>SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA</Item>
<Item>SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA</Item>
</Array>
</Set>
<Set name="Host">85.17.7.237</Set>
</New>
</Arg>
</Call>
---------------------------------------------------------------------
zimbra.web.xml.in and zimbraAdmin.web.xml.in
---------------------------------------------------------------------
<context-param>
<param-name>zimbra.soap.url</param-name>
<param-value>http://85.17.7.237/service/soap</param-value>
</context-param>
May be i should mention that web access is set to only https.
tnx,
Dirk |