8fe9f2ece0
Made sure only 1 test using ngrok is running at a time
61 lines
2.6 KiB
XML
61 lines
2.6 KiB
XML
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one
|
|
or more contributor license agreements. See the NOTICE file
|
|
distributed with this work for additional information
|
|
regarding copyright ownership. The ASF licenses this file
|
|
to you under the Apache License, Version 2.0 (the
|
|
"License"); you may not use this file except in compliance
|
|
with the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing,
|
|
software distributed under the License is distributed on an
|
|
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
KIND, either express or implied. See the License for the
|
|
specific language governing permissions and limitations
|
|
under the License.
|
|
-->
|
|
|
|
<!-- Read https://james.apache.org/server/config-imap4.html for further details -->
|
|
<imapservers>
|
|
<imapserver enabled="true">
|
|
<jmxName>imapserver</jmxName>
|
|
<bind>0.0.0.0:143</bind>
|
|
<connectionBacklog>200</connectionBacklog>
|
|
<tls socketTLS="false" startTLS="true">
|
|
<!-- To create a new keystore execute:
|
|
keytool -genkey -alias james -keyalg RSA -keystore /path/to/james/conf/keystore
|
|
-->
|
|
<keystore>file://conf/keystore</keystore>
|
|
<secret>james72laBalle</secret>
|
|
<provider>org.bouncycastle.jce.provider.BouncyCastleProvider</provider>
|
|
</tls>
|
|
<connectionLimit>0</connectionLimit>
|
|
<connectionLimitPerIP>0</connectionLimitPerIP>
|
|
<idleTimeInterval>120</idleTimeInterval>
|
|
<idleTimeIntervalUnit>SECONDS</idleTimeIntervalUnit>
|
|
<enableIdle>true</enableIdle>
|
|
<plainAuthDisallowed>false</plainAuthDisallowed>
|
|
</imapserver>
|
|
<imapserver enabled="true">
|
|
<jmxName>imapserver-ssl</jmxName>
|
|
<bind>0.0.0.0:993</bind>
|
|
<connectionBacklog>200</connectionBacklog>
|
|
<tls socketTLS="true" startTLS="false">
|
|
<!-- To create a new keystore execute:
|
|
keytool -genkey -alias james -keyalg RSA -keystore /path/to/james/conf/keystore
|
|
-->
|
|
<keystore>file://conf/keystore</keystore>
|
|
<secret>james72laBalle</secret>
|
|
<provider>org.bouncycastle.jce.provider.BouncyCastleProvider</provider>
|
|
</tls>
|
|
<connectionLimit>0</connectionLimit>
|
|
<connectionLimitPerIP>0</connectionLimitPerIP>
|
|
<idleTimeInterval>120</idleTimeInterval>
|
|
<idleTimeIntervalUnit>SECONDS</idleTimeIntervalUnit>
|
|
<enableIdle>true</enableIdle>
|
|
</imapserver>
|
|
</imapservers> |