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 303e24a9e Site checkin for project Apache James: Jenkins Tools
303e24a9e is described below

commit 303e24a9ef9b2fedf0b5db1a3b513531bed51643
Author: jenkins <bui...@apache.org>
AuthorDate: Tue Aug 2 11:16:58 2022 +0000

    Site checkin for project Apache James: Jenkins Tools
---
 james-distributed-app/3.7.0/operate/guide.html    |   9 +
 james-distributed-app/3.7.0/operate/webadmin.html |  46 +++-
 sitemap-james-distributed-app.xml                 | 132 +++++-----
 sitemap-james-project.xml                         | 286 +++++++++++-----------
 sitemap-james-site.xml                            |   4 +-
 5 files changed, 264 insertions(+), 213 deletions(-)

diff --git a/james-distributed-app/3.7.0/operate/guide.html 
b/james-distributed-app/3.7.0/operate/guide.html
index 766252056..11390f09d 100644
--- a/james-distributed-app/3.7.0/operate/guide.html
+++ b/james-distributed-app/3.7.0/operate/guide.html
@@ -451,6 +451,11 @@ all mails in a mail repository</a> or
 a single mail in a mail repository</a>.</p>
 </div>
 <div class="paragraph">
+<p>In order to prevent unbounded processing that could consume unbounded 
resources. We can provide a CRON with <code>limit</code> parameter.
+Ex: 10 reprocessed per minute
+Note that it only support the reprocessing all mails.</p>
+</div>
+<div class="paragraph">
 <p>Also, one can decide to
 <a href="webadmin.html#_removing_all_mails_from_a_mail_repository" 
class="page">delete
 all the mails of a mail repository</a> or
@@ -541,6 +546,10 @@ task. It will start reprocessing all the failed events 
registered in
 event dead letters.</p>
 </div>
 <div class="paragraph">
+<p>In order to prevent unbounded processing that could consume unbounded 
resources. We can provide a CRON with <code>limit</code> parameter.
+Ex: 10 redelivery per minute</p>
+</div>
+<div class="paragraph">
 <p>If for some other reason you don’t need to redeliver all events, you
 have more fine-grained operations allowing you to
 <a href="webadmin.html#_redeliver_group_events" class="page">redeliver group 
events</a>
diff --git a/james-distributed-app/3.7.0/operate/webadmin.html 
b/james-distributed-app/3.7.0/operate/webadmin.html
index 667f5ad69..17843d288 100644
--- a/james-distributed-app/3.7.0/operate/webadmin.html
+++ b/james-distributed-app/3.7.0/operate/webadmin.html
@@ -5798,10 +5798,14 @@ processing in. Defaults to the <code>state</code> field 
of each processed email.
 this value to <code>false</code> allows non destructive reprocessing as you 
keep a copy of the email in the mail repository and can be valuable
 when debugging.</p>
 </li>
+<li>
+<p><code>limit</code> (integer value. Optional, default is empty). It enables 
to limit the count of elements reprocessed.
+If unspecified the count of the processed elements is unbounded</p>
+</li>
 </ul>
 </div>
 <div class="paragraph">
-<p>For instance:</p>
+<p>redeliver_group_events</p>
 </div>
 <div class="literalblock">
 <div class="content">
@@ -6421,6 +6425,25 @@ with the dead letter API:</p>
 </div>
 </div>
 <div class="paragraph">
+<p>Additional query parameters are supported:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><code>limit</code> (integer value. Optional, default is empty). It enables 
to limit the count of elements redelivered.
+If unspecified the count of the processed elements is unbounded</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>For instance:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre>curl -XPOST 
http://ip:port/events/deadLetter?action=redeliver&amp;limit=10</pre>
+</div>
+</div>
+<div class="paragraph">
 <p>Will create a task that will attempt to redeliver all events stored in
 <code>Event Dead Letter''. If successful, redelivered events will then be
 removed from </code>Dead Letter''.</p>
@@ -6447,7 +6470,7 @@ a task</a>.</p>
 <h3 id="_redeliver_group_events"><a class="anchor" 
href="#_redeliver_group_events"></a>Redeliver group events</h3>
 <div class="literalblock">
 <div class="content">
-<pre>curl -XPOST 
http://ip:port/events/deadLetter/groups/org.apache.james.mailbox.events.EventBusTestFixture$GroupA</pre>
+<pre>curl -XPOST 
http://ip:port/events/deadLetter/groups/org.apache.james.mailbox.events.EventBusTestFixture$GroupA?action=redeliver</pre>
 </div>
 </div>
 <div class="paragraph">
@@ -6456,6 +6479,25 @@ particular group stored in <code>Event Dead Letter''. If 
successful,
 redelivered events will then be removed from </code>Dead Letter''.</p>
 </div>
 <div class="paragraph">
+<p>Additional query parameters are supported:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><code>limit</code> (integer value. Optional, default is empty). It enables 
to limit the count of elements redelivered.
+If unspecified the count of the processed elements is unbounded</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>For instance:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre>curl -XPOST 
http://ip:port/events/deadLetter/groups/org.apache.james.mailbox.events.EventBusTestFixture$GroupA?action=redeliver&amp;limit=10</pre>
+</div>
+</div>
+<div class="paragraph">
 <p><a href="#_endpoints_returning_a_task">More details about endpoints 
returning
 a task</a>.</p>
 </div>
diff --git a/sitemap-james-distributed-app.xml 
b/sitemap-james-distributed-app.xml
index 139810b89..f7544e75b 100644
--- a/sitemap-james-distributed-app.xml
+++ b/sitemap-james-distributed-app.xml
@@ -2,266 +2,266 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9";>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/architecture/consistency-model.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/architecture/implemented-standards.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/architecture/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/architecture/specialized-instances.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/benchmark/db-benchmark.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/benchmark/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/benchmark/james-benchmark.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/batchsizes.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/blobstore.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/cassandra.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/collecting-contacts.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/collecting-events.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/dns.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/domainlist.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/dsn.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/elasticsearch.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/extensions.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/healthcheck.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/imap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/jmap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/jmx.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/jvm.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/listeners.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/mailetcontainer.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/mailets.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/mailrepositorystore.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/matchers.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/pop3.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/rabbitmq.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/recipientrewritetable.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/redis.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/sieve.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/smtp-hooks.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/smtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/spam.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/ssl.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/tika.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/usersrepository.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/vault.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/configure/webadmin.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/extending/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/extending/mail-processing.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/extending/mailbox-listeners.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/extending/smtp-hooks.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/extending/webadmin-routes.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.7.0/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.7.0/objectives.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/cassandra-migration.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/cli.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/guide.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/logging.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/metrics.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/migrating.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/security.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/operate/webadmin.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.7.0/run/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/k8s-checklist.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/k8s-logsMetrics.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/k8s-secrets.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/k8s-values.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/run-docker.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/run-java.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.0/run/run-kubernetes.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-james-project.xml b/sitemap-james-project.xml
index 0e8bf63e0..7fdac2805 100644
--- a/sitemap-james-project.xml
+++ b/sitemap-james-project.xml
@@ -2,574 +2,574 @@
 <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>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/download.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/community/guidelines.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/community/mailing-lists.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/release.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/support.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/community/website.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/configuration.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/concepts/glossary.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/concepts/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/mail/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/messages/imf.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/messages/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/messages/mime.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/processing/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/imap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/jmap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/pop.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/protocols/smtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/storage/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/storage/mailbox.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/storage/users.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/concepts/user/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/customization/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/development/deployment-tests.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/development/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/development/logging.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/15-minute-demo.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/5-minute-demo.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/architecture.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/concepts.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/conf/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/context.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/basic/help.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.0/servers/basic/objectives.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/demo.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/extendable.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/run.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.0/servers/test.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/community/contributing.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/download.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/community/guidelines.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/community/mailing-lists.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/release.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/support.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/community/website.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/configuration.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/concepts/glossary.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/concepts/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/mail/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/imf.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/mime.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/processing/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/imap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/jmap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/pop.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/smtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/mailbox.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/users.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/concepts/user/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/customization/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/development/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/development/logging.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/15-minute-demo.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/5-minute-demo.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/architecture.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/concepts.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/conf/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/context.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/basic/help.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/objectives.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/demo.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/consistency-model.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/specialized-instances.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/batchsizes.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/blobstore.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/cassandra.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/collecting-contacts.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/collecting-events.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/dns.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/domainlist.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/dsn.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/elasticsearch.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/extensions.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/healthcheck.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/imap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/jmap.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/jmx.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/listeners.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailetcontainer.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailets.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailrepositorystore.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/matchers.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/pop3.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/rabbitmq.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/recipientrewritetable.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/smtp-hooks.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/smtp.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/spam.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/ssl.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/tika.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/usersrepository.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/vault.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/webadmin.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/mail-processing.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/mailbox-listeners.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/smtp-hooks.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/webadmin-routes.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/objectives.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/cassandra-migration.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/cli.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/guide.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/logging.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/metrics.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/migrating.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/webadmin.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/run-docker.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/run.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/extendable.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/run.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.6.0/servers/test.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-james-site.xml b/sitemap-james-site.xml
index e7a6b7d89..1b433eafd 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>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-site/latest/index.html</loc>
-<lastmod>2022-07-27T15:09:37.652Z</lastmod>
+<lastmod>2022-08-02T11:16:27.779Z</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