This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-staging
in repository https://gitbox.apache.org/repos/asf/james-site.git


The following commit(s) were added to refs/heads/asf-staging by this push:
     new 735c69f  Site checkin for project Apache James: Jenkins Tools
735c69f is described below

commit 735c69fa9f1e5ee3d781abbb7b1c1e020156c112
Author: jenkins <bui...@apache.org>
AuthorDate: Sat Jun 5 06:25:16 2021 +0000

    Site checkin for project Apache James: Jenkins Tools
---
 .../servers/distributed/configure/blobstore.html   |  17 +
 .../3.7.0/servers/distributed/run-docker.html      |  57 +--
 sitemap-james-project.xml                          | 388 ++++++++++-----------
 sitemap-james-site.xml                             |   4 +-
 4 files changed, 244 insertions(+), 222 deletions(-)

diff --git a/james-project/3.7.0/servers/distributed/configure/blobstore.html 
b/james-project/3.7.0/servers/distributed/configure/blobstore.html
index 3ebd085..90d175b 100644
--- a/james-project/3.7.0/servers/distributed/configure/blobstore.html
+++ b/james-project/3.7.0/servers/distributed/configure/blobstore.html
@@ -561,6 +561,23 @@ in GIT to get some examples and hints.</p>
 </li>
 </ul>
 </div>
+<div class="admonitionblock warning">
+<table>
+<tr>
+<td class="icon">
+<i class="fa icon-warning" title="Warning"></i>
+</td>
+<td class="content">
+JAMES-3591 Cassandra is not made to store large binary content, its use will 
be suboptimal compared to
+Alternatives (namely S3 compatible BlobStores backed by for instance S3, MinIO 
or Ozone)
+</td>
+</tr>
+</table>
+</div>
+<div class="paragraph">
+<p>The generated startup warning log can be deactivated via the 
<code>cassandra.blob.store.disable.startup.warning</code> environment
+variable being positioned to <code>false</code>.</p>
+</div>
 <div class="paragraph">
 <p><strong>deduplication.enable</strong>: Mandatory. Supported value: true and 
false.</p>
 </div>
diff --git a/james-project/3.7.0/servers/distributed/run-docker.html 
b/james-project/3.7.0/servers/distributed/run-docker.html
index d41a551..227e846 100644
--- a/james-project/3.7.0/servers/distributed/run-docker.html
+++ b/james-project/3.7.0/servers/distributed/run-docker.html
@@ -576,15 +576,27 @@ Follow the 'Useful commands' section for more information 
about James CLI.</p>
 <div class="sect2">
 <h3 id="_requirements"><a class="anchor" 
href="#_requirements"></a>Requirements</h3>
 <div class="paragraph">
-<p>Built artifacts should be in 
./dockerfiles/run/guice/cassandra-rabbitmq/destination folder for cassandra.
-If you haven&#8217;t already:</p>
+<p>Compile the whole project:</p>
 </div>
 <div class="literalblock">
 <div class="content">
-<pre>  $ docker build -t james/project dockerfiles/compilation/java-11
-  $ docker run -v $HOME/.m2:/root/.m2 -v $PWD:/origin \
--v 
$PWD/dockerfiles/run/guice/cassandra-rabbitmq/destination:/cassandra-rabbitmq/destination
 \
--t james/project -s HEAD</pre>
+<pre>mvn clean install -DskipTests -T 4</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Then load the distributed server docker image:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre>docker load -i 
server/container/guice/cassandra-rabbitmq-guice/target/jib-image.tar</pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Alternatively we provide convenience distribution for the latest 
release:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre>docker pull apache/james:distributed-3.6.0</pre>
 </div>
 </div>
 </div>
@@ -637,19 +649,11 @@ If you haven&#8217;t already:</p>
 <p>We need to provide the key we will use for TLS. For obvious reasons, this 
is not provided in this git.</p>
 </div>
 <div class="paragraph">
-<p>Copy your TLS keys to 
<code>run/guice/cassandra-rabbitmq/destination/conf/keystore</code> or generate 
it using the following command. The password must be 
<code>james72laBalle</code> to match default configuration.</p>
-</div>
-<div class="literalblock">
-<div class="content">
-<pre>$ keytool -genkey -alias james -keyalg RSA -keystore 
dockerfiles/run/guice/cassandra-rabbitmq/destination/conf/keystore</pre>
-</div>
-</div>
-<div class="paragraph">
-<p>Then we need to build james container :</p>
+<p>Copy your TLS keys to the current folder or generate it using the following 
command. The password must be <code>james72laBalle</code> to match default 
configuration.</p>
 </div>
 <div class="literalblock">
 <div class="content">
-<pre>$ docker build -t james_run dockerfiles/run/guice/cassandra-rabbitmq</pre>
+<pre>$ keytool -genkey -alias james -keyalg RSA -keystore keystore</pre>
 </div>
 </div>
 <div class="paragraph">
@@ -657,8 +661,9 @@ If you haven&#8217;t already:</p>
 </div>
 <div class="literalblock">
 <div class="content">
-<pre> $ docker run --hostname HOSTNAME -p "25:25" -p 80:80 -p "110:110" -p 
"143:143" -p "465:465" -p "587:587" -p "993:993" -p "127.0.0.1:8000:8000" 
--link cassandra:cassandra --link rabbitmq:rabbitmq
---link elasticsearch:elasticsearch --link tika:tika --link s3:s3.docker.test 
--name james_run -t james_run</pre>
+<pre>$ docker run --hostname HOSTNAME -p "25:25" -p 80:80 -p "110:110" -p 
"143:143" -p "465:465" -p "587:587" -p "993:993" -p "127.0.0.1:8000:8000" 
--link cassandra:cassandra --link rabbitmq:rabbitmq
+     --link elasticsearch:elasticsearch --link tika:tika --link 
s3:s3.docker.test --name james_run
+     -v $PWD/keystore:/root/conf/keystore -t 
apache/james:distributed-latest</pre>
 </div>
 </div>
 <div class="paragraph">
@@ -676,11 +681,11 @@ If you haven&#8217;t already:</p>
 Note that the above example assumes <code>127.0.0.1</code> is your loopback 
interface for convenience but you should change it if this is not the case on 
your machine.</p>
 </div>
 <div class="paragraph">
-<p>If you want to pass additional options to the underlying java command, you 
can configure a <em>JVM_OPTIONS</em> env variable, for example add:</p>
+<p>If you want to pass additional options to the underlying java command, you 
can configure a <em>JAVA_TOOL_OPTIONS</em> env variable, for example add:</p>
 </div>
 <div class="literalblock">
 <div class="content">
-<pre>--env JVM_OPTIONS="-Xms256m -Xmx2048m"</pre>
+<pre>--env "JAVA_TOOL_OPTIONS=-Xms256m -Xmx2048m"</pre>
 </div>
 </div>
 <div class="paragraph">
@@ -690,13 +695,12 @@ Note that the above example assumes 
<code>127.0.0.1</code> is your loopback inte
 <div class="sect2">
 <h3 id="_instrumentation"><a class="anchor" 
href="#_instrumentation"></a>Instrumentation</h3>
 <div class="paragraph">
-<p>You can use Glowroot to instrumentalize James. The provided guice docker 
files allow a simple way to do it.
-In order to activate Glowroot you need to run the container with the 
environment variable <em>GLOWROOT_ACTIVATED</em> set to <em>true</em>
-and to expose the glowroot instrumentation ui port.</p>
+<p>You can use <a href="https://glowroot.org/";>Glowroot</a> to instrumentalize 
James. It is packaged as part of the docker distribution to easily enable 
valuable performances insights.
+Disabled by default, its java agent can easily be enabled:</p>
 </div>
 <div class="literalblock">
 <div class="content">
-<pre>--env GLOWROOT_ACTIVATED=true -p "4000:4000"</pre>
+<pre>--env "JAVA_TOOL_OPTIONS=-javaagent:/root/glowroot.jar" -p 
"4000:4000"</pre>
 </div>
 </div>
 <div class="paragraph">
@@ -726,8 +730,9 @@ See the <a 
href="https://github.com/glowroot/glowroot/wiki/Agent-Installation-(w
 </div>
 <div class="literalblock">
 <div class="content">
-<pre>$ docker run --hostname HOSTNAME -p "25:25" -p 80:80 -p "110:110" -p 
"143:143" -p "465:465" -p "587:587" -p "993:993" --link cassandra:cassandra 
--link rabbitmq:rabbitmq
---link elasticsearch:elasticsearch --link tika:tika --name james_run -t 
james_run</pre>
+<pre>$ docker run --hostname HOSTNAME -p "25:25" -p 80:80 -p "110:110" -p 
"143:143" -p "465:465" -p "587:587" -p "993:993" -p "127.0.0.1:8000:8000" 
--link cassandra:cassandra --link rabbitmq:rabbitmq
+     --link elasticsearch:elasticsearch --link tika:tika --link 
s3:s3.docker.test --name james_run
+     --link tika:tika -v $PWD/keystore:/root/conf/keystore -t 
apache/james:distributed-latest</pre>
 </div>
 </div>
 </div>
diff --git a/sitemap-james-project.xml b/sitemap-james-project.xml
index 449836b..25a7e69 100644
--- a/sitemap-james-project.xml
+++ b/sitemap-james-project.xml
@@ -2,778 +2,778 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9";>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/community/contributing.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/download.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/community/guidelines.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/community/mailing-lists.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/release.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/support.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/website.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/configuration.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/concepts/glossary.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/concepts/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/mail/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/messages/imf.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/messages/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/messages/mime.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/processing/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/imap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/jmap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/pop.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/smtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/storage/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/storage/mailbox.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/storage/users.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/user/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/customization/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/development/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/development/logging.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/15-minute-demo.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/5-minute-demo.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/architecture.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/concepts.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/conf/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/context.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/basic/help.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/objectives.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/demo.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/architecture/consistency-model.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/architecture/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/architecture/specialized-instances.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/batchsizes.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/blobstore.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/cassandra.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/collecting-contacts.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/collecting-events.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/dns.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/domainlist.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/dsn.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/elasticsearch.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/extensions.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/healthcheck.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/imap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/jmap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/jmx.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/listeners.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/mailetcontainer.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/mailets.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/mailrepositorystore.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/matchers.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/pop3.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/rabbitmq.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/recipientrewritetable.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/smtp-hooks.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/smtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/spam.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/ssl.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/tika.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/usersrepository.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/vault.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/configure/webadmin.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/extending/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/extending/mail-processing.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/extending/mailbox-listeners.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/extending/smtp-hooks.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/extending/webadmin-routes.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/objectives.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/cassandra-migration.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/cli.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/guide.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/logging.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/metrics.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/migrating.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/operate/webadmin.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/run-docker.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/distributed/run.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/extendable.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/run.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/test.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/community/contributing.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/download.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/community/guidelines.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/community/mailing-lists.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/release.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/support.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/website.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/configuration.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/concepts/glossary.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/concepts/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/mail/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/imf.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/mime.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/processing/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/imap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/jmap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/pop.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/smtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/mailbox.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/users.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/user/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/customization/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/development/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/development/logging.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/15-minute-demo.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/5-minute-demo.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/architecture.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/concepts.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/conf/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/context.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/basic/help.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/objectives.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/demo.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/consistency-model.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/specialized-instances.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/batchsizes.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/blobstore.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/cassandra.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/collecting-contacts.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/collecting-events.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/dns.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/domainlist.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/dsn.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/elasticsearch.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/extensions.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/healthcheck.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/imap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/jmap.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/jmx.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/listeners.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailetcontainer.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailets.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailrepositorystore.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/matchers.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/pop3.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/rabbitmq.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/recipientrewritetable.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/smtp-hooks.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/smtp.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/spam.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/ssl.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/tika.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/usersrepository.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/vault.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/webadmin.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/mail-processing.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/mailbox-listeners.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/smtp-hooks.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/webadmin-routes.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/objectives.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/cassandra-migration.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/cli.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/guide.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/logging.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/metrics.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/migrating.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/webadmin.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/run-docker.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/run.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/extendable.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/run.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/test.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-james-site.xml b/sitemap-james-site.xml
index 41fe955..de5c256 100644
--- a/sitemap-james-site.xml
+++ b/sitemap-james-site.xml
@@ -2,10 +2,10 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9";>
 <url>
 <loc>https://james.apache.org/james-site/latest/homepage.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-site/latest/index.html</loc>
-<lastmod>2021-06-03T12:12:49.391Z</lastmod>
+<lastmod>2021-06-05T06:23:57.655Z</lastmod>
 </url>
 </urlset>

---------------------------------------------------------------------
To unsubscribe, e-mail: notifications-unsubscr...@james.apache.org
For additional commands, e-mail: notifications-h...@james.apache.org

Reply via email to