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 3342dabdc Site checkin for project Apache James: Jenkins Tools
3342dabdc is described below
commit 3342dabdc042c23da7c3145819ac3406c65c8c99
Author: jenkins <[email protected]>
AuthorDate: Wed Oct 26 06:01:25 2022 +0000
Site checkin for project Apache James: Jenkins Tools
---
james-distributed-app/3.7.2/configure/spam.html | 200 ++++++++++-----
james-distributed-app/3.7.2/configure/ssl.html | 20 ++
james-distributed-app/3.7.2/operate/webadmin.html | 23 +-
sitemap-james-distributed-app.xml | 132 +++++-----
sitemap-james-project.xml | 286 +++++++++++-----------
sitemap-james-site.xml | 4 +-
6 files changed, 385 insertions(+), 280 deletions(-)
diff --git a/james-distributed-app/3.7.2/configure/spam.html
b/james-distributed-app/3.7.2/configure/spam.html
index b600e76d0..159163769 100644
--- a/james-distributed-app/3.7.2/configure/spam.html
+++ b/james-distributed-app/3.7.2/configure/spam.html
@@ -432,6 +432,135 @@ will not usually be enough to reach the threshold. Note
that this mailet is exec
</ul>
</div>
<div class="sect2">
+<h3 id="_rspamd"><a class="anchor" href="#_rspamd"></a>Rspamd</h3>
+<div class="paragraph">
+<p>The Rspamd extension (optional) requires an extra configuration file
<code>rspamd.properties</code> to configure RSpamd connection</p>
+</div>
+<table class="tableblock frame-all grid-all stretch">
+<caption class="title">Table 1. rspamd.properties content</caption>
+<colgroup>
+<col style="width: 50%;">
+<col style="width: 50%;">
+</colgroup>
+<thead>
+<tr>
+<th class="tableblock halign-left valign-top">Property name</th>
+<th class="tableblock halign-left valign-top">explanation</th>
+</tr>
+</thead>
+<tbody>
+<tr>
+<td class="tableblock halign-left valign-top"><p
class="tableblock">rSpamdUrl</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">URL
defining the Rspamd’s server. Eg: <a href="http://rspamd:11334"
class="bare">http://rspamd:11334</a></p></td>
+</tr>
+<tr>
+<td class="tableblock halign-left valign-top"><p
class="tableblock">rSpamdPassword</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Password
for pass authentication when request to Rspamd’s server. Eg:
admin</p></td>
+</tr>
+<tr>
+<td class="tableblock halign-left valign-top"><p
class="tableblock">rspamdTimeout</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Integer.
Timeout for http requests to Rspamd. Default to 15 seconds.</p></td>
+</tr>
+<tr>
+<td class="tableblock halign-left valign-top"><p
class="tableblock">perUserBayes</p></td>
+<td class="tableblock halign-left valign-top"><p class="tableblock">Boolean.
Whether to scan/learn mails using per-user Bayes. Default to false.</p></td>
+</tr>
+</tbody>
+</table>
+<div class="paragraph">
+<p><code>RspamdScanner</code> supports the following options:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>You can specify the <code>virusProcessor</code> if you want to enable virus
scanning for mail. Upon configurable <code>virusProcessor</code>
+you can specify how James process mail virus. We provide a sample Rspamd
mailet and <code>virusProcessor</code> configuration:</p>
+</li>
+<li>
+<p>You can specify the <code>rejectSpamProcessor</code>. Emails marked as
<code>rejected</code> by Rspamd will be redirected to this
+processor. This corresponds to emails with the highest spam score, thus
delivering them to users as marked as spam
+might not even be desirable.</p>
+</li>
+<li>
+<p>The <code>rewriteSubject</code> option allows to rewritte subjects when
asked by Rspamd.</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>This mailet can scan mails against per-user Bayes by configure
<code>perUserBayes</code> in <code>rspamd.properties</code>. This is achieved
+through the use of Rspamd <code>Deliver-To</code> HTTP header. If true, Rspamd
will be called for each recipient of the mail, which comes at a performance
cost. If true, subjects are not rewritten.
+If true <code>virusProcessor</code> and <code>rejectSpamProcessor</code> are
honnered per user, at the cost of email copies. Default to false.</p>
+</div>
+<div class="paragraph">
+<p>Here is an example of mailet pipeline conducting out RspamdScanner
execution:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre><processor state="local-delivery" enableJmx="true">
+ <mailet match="All" class="org.apache.james.rspamd.RspamdScanner">
+ <rewriteSubject>true</rewriteSubject>
+ <virusProcessor>virus</virusProcessor>
+ <rejectSpamProcessor>spam</rejectSpamProcessor>
+ </mailet>
+ <mailet match="IsMarkedAsSpam=org.apache.james.rspamd.status"
class="WithStorageDirective">
+ <targetFolderName>Spam</targetFolderName>
+ </mailet>
+ <mailet match="All" class="LocalDelivery"/>
+</processor>
+<!--Choose one between these two following virus processor, or configure a
custom one if you want-->
+<!--Hard reject virus mail-->
+<processor state="virus" enableJmx="false">
+ <mailet match="All" class="ToRepository">
+ <repositoryPath>file://var/mail/virus/</repositoryPath>
+ </mailet>
+</processor>
+<!--Soft reject virus mail-->
+<processor state="virus" enableJmx="false">
+ <mailet match="All" class="StripAttachment">
+ <remove>all</remove>
+ <pattern>.*</pattern>
+ </mailet>
+ <mailet match="All" class="AddSubjectPrefix">
+ <subjectPrefix>[VIRUS]</subjectPrefix>
+ </mailet>
+ <mailet match="All" class="LocalDelivery"/>
+</processor>
+<!--Store rejected spam emails (with a very high score) -->
+<processor state="virus" enableJmx="false">
+ <mailet match="All" class="ToRepository">
+ <repositoryPath>cassandra://var/mail/spam</repositoryPath>
+ </mailet>
+</processor></pre>
+</div>
+</div>
+<div class="sect3">
+<h4 id="_feedback_for_rspamd"><a class="anchor"
href="#_feedback_for_rspamd"></a>Feedback for Rspamd</h4>
+<div class="paragraph">
+<p>If enabled, the <code>RspamdListener</code> will base on the Mailbox event
to detect the message is a spam or not, then James will send report
<code>spam</code> or <code>ham</code> to Rspamd.
+This listener can report mails to per-user Bayes by configure
<code>perUserBayes</code> in <code>rspamd.properties</code>.
+The Rspamd listener needs to explicitly be registered with <a
href="listeners.html" class="page">listeners.xml</a>.</p>
+</div>
+<div class="paragraph">
+<p>Example:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre><listeners>
+ <listener>
+ <class>org.apache.james.rspamd.RspamdListener</class>
+ </listener>
+</listeners></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>For more detail about how to use Rspamd’s extension:
<code>third-party/rspamd/index.md</code></p>
+</div>
+<div class="paragraph">
+<p>Alternatively, batch reports can be triggered on user mailbox content via
webAdmin. <a
href="https://github.com/apache/james-project/tree/master/third-party/rspamd#additional-webadmin-endpoints">Read
more</a>.</p>
+</div>
+</div>
+</div>
+<div class="sect2">
<h3 id="_spamassassin"><a class="anchor"
href="#_spamassassin"></a>SpamAssassin</h3>
<div class="paragraph">
<p>Here is an example of mailet pipeline conducting out SpamAssassin
execution:</p>
@@ -469,9 +598,8 @@ current sender’s email header.</p>
</li>
</ul>
</div>
-</div>
-<div class="sect2">
-<h3 id="_feedback_for_spamassassin"><a class="anchor"
href="#_feedback_for_spamassassin"></a>Feedback for SpamAssassin</h3>
+<div class="sect3">
+<h4 id="_feedback_for_spamassassin"><a class="anchor"
href="#_feedback_for_spamassassin"></a>Feedback for SpamAssassin</h4>
<div class="paragraph">
<p>If enabled, the <code>SpamAssassinListener</code> will asynchronously
report users mails moved to the <code>Spam</code> mailbox as Spam,
and other mails as <code>Ham</code>, effectively populating the user database
for per user spam detection. This enables a per-user
@@ -481,7 +609,7 @@ Spam categorization to be conducted out by the SpamAssassin
mailet, the SpamAssa
<p>The SpamAssassin listener requires an extra configuration file
<code>spamassassin.properties</code> to configure SpamAssassin connection
(optional):</p>
</div>
<table class="tableblock frame-all grid-all stretch">
-<caption class="title">Table 1. spamassassin.properties content</caption>
+<caption class="title">Table 2. spamassassin.properties content</caption>
<colgroup>
<col style="width: 50%;">
<col style="width: 50%;">
@@ -525,70 +653,6 @@ Spam categorization to be conducted out by the
SpamAssassin mailet, the SpamAssa
</div>
</div>
</div>
-<div class="sect1">
-<h2 id="_rspamd"><a class="anchor" href="#_rspamd"></a>Rspamd</h2>
-<div class="sectionbody">
-<div class="paragraph">
-<p>The Rspamd extension (optional) requires an extra configuration file
<code>rspamd.properties</code> to configure RSpamd connection</p>
-</div>
-<table class="tableblock frame-all grid-all stretch">
-<caption class="title">Table 2. rspamd.properties content</caption>
-<colgroup>
-<col style="width: 50%;">
-<col style="width: 50%;">
-</colgroup>
-<thead>
-<tr>
-<th class="tableblock halign-left valign-top">Property name</th>
-<th class="tableblock halign-left valign-top">explanation</th>
-</tr>
-</thead>
-<tbody>
-<tr>
-<td class="tableblock halign-left valign-top"><p
class="tableblock">rSpamdUrl</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">URL
defining the Rspamd’s server. Eg: <a href="http://rspamd:11334"
class="bare">http://rspamd:11334</a></p></td>
-</tr>
-<tr>
-<td class="tableblock halign-left valign-top"><p
class="tableblock">rSpamdPassword</p></td>
-<td class="tableblock halign-left valign-top"><p class="tableblock">Password
for pass authentication when request to Rspamd’s server. Eg:
admin</p></td>
-</tr>
-</tbody>
-</table>
-<div class="paragraph">
-<p>Here is an example of mailet pipeline conducting out RspamdScanner
execution:</p>
-</div>
-<div class="literalblock">
-<div class="content">
-<pre><mailet match="All" class="org.apache.james.rspamd.RspamdScanner">
-</mailet>
-<mailet match="IsMarkedAsSpam=org.apache.james.rspamd.status"
class="WithStorageDirective">
- <targetFolderName>Spam</targetFolderName>
-</mailet></pre>
-</div>
-</div>
-<div class="sect2">
-<h3 id="_feedback_for_rspamd"><a class="anchor"
href="#_feedback_for_rspamd"></a>Feedback for Rspamd</h3>
-<div class="paragraph">
-<p>If enabled, the <code>RspamdListener</code> will base on the Mailbox event
to detect the message is a spam or not, then James will send report
<code>spam</code> or <code>ham</code> to Rspamd
-The Rspamd listener needs to explicitly be registered with <a
href="listeners.html" class="page">listeners.xml</a>.</p>
-</div>
-<div class="paragraph">
-<p>Example:</p>
-</div>
-<div class="literalblock">
-<div class="content">
-<pre><listeners>
- <listener>
- <class>org.apache.james.rspamd.RspamdListener</class>
- </listener>
-</listeners></pre>
-</div>
-</div>
-<div class="paragraph">
-<p>For more detail about how to use Rspamd’s extension:
<code>third-party/rspamd/index.md</code></p>
-</div>
-</div>
-</div>
</div>
</article>
</div>
diff --git a/james-distributed-app/3.7.2/configure/ssl.html
b/james-distributed-app/3.7.2/configure/ssl.html
index b3b87bed1..721695191 100644
--- a/james-distributed-app/3.7.2/configure/ssl.html
+++ b/james-distributed-app/3.7.2/configure/ssl.html
@@ -440,6 +440,26 @@ for TLS 1.0 which, as a result, is sometimes referred to
as SSL 3.1.</p>
</div>
</div>
<div class="paragraph">
+<p>Optionally, TLS protocols and/or cipher suites can be specified explicitly
(smtpserver.xml, pop3server.xml, imapserver.xml,..).
+Otherwise, the default protocols and cipher suites of the used JDK will be
used:</p>
+</div>
+<div class="literalblock">
+<div class="content">
+<pre><tls socketTLS="true" startTLS="false">
+ <supportedProtocols>
+ <protocol>TLSv1.2</protocol>
+ <protocol>TLSv1.1</protocol>
+ <protocol>TLSv1</protocol>
+ <protocol>SSLv3</protocol>
+ </supportedProtocols>
+ <supportedCipherSuites>
+ <cipherSuite>TLS_AES_256_GCM_SHA384</cipherSuite>
+
<cipherSuite>TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256</cipherSuite>
+ </supportedCipherSuites>
+</tls></pre>
+</div>
+</div>
+<div class="paragraph">
<p>Each of these block has an optional boolean configuration element
<b>socketTLS</b> and <b>startTLS</b> which is used to
toggle
use of SSL or TLS for the service.</p>
</div>
diff --git a/james-distributed-app/3.7.2/operate/webadmin.html
b/james-distributed-app/3.7.2/operate/webadmin.html
index 993382045..b2849c340 100644
--- a/james-distributed-app/3.7.2/operate/webadmin.html
+++ b/james-distributed-app/3.7.2/operate/webadmin.html
@@ -808,7 +808,8 @@ above is returned</p>
</div>
</div>
<div class="paragraph">
-<p>Will return a list of Execution reports that are currently in progress.</p>
+<p>Will return a list of Execution reports that are currently in progress.
This list is sorted by
+reverse submitted date (recent tasks goes first).</p>
</div>
<div class="paragraph">
<p>Response codes:</p>
@@ -823,6 +824,26 @@ above is returned</p>
</li>
</ul>
</div>
+<div class="paragraph">
+<p>Additional optional task parameters are supported:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><code>status</code> one of <code>waiting</code>, <code>inProgress</code>,
<code>canceledRequested</code>, <code>completed</code>, <code>canceled</code>,
<code>failed</code>. Only
+tasks with the given status are returned.</p>
+</li>
+<li>
+<p><code>type</code>: only tasks with the given type are returned.</p>
+</li>
+<li>
+<p><code>offset</code>: Integer, number of tasks to skip in the response.
Useful for paging.</p>
+</li>
+<li>
+<p><code>limit</code>: Integer, maximum number of tasks to return in one
call</p>
+</li>
+</ul>
+</div>
</div>
<div class="sect2">
<h3 id="_endpoints_returning_a_task"><a class="anchor"
href="#_endpoints_returning_a_task"></a>Endpoints returning a task</h3>
diff --git a/sitemap-james-distributed-app.xml
b/sitemap-james-distributed-app.xml
index fb5e5b2f8..209af749c 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.2/architecture/consistency-model.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/architecture/implemented-standards.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/architecture/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/architecture/specialized-instances.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/benchmark/db-benchmark.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/benchmark/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/benchmark/james-benchmark.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/batchsizes.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/blobstore.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/cassandra.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/collecting-contacts.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/collecting-events.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/dns.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/domainlist.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/dsn.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/extensions.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/healthcheck.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/imap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/jmap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/jmx.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/jvm.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/listeners.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/mailetcontainer.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/mailets.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/mailrepositorystore.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/matchers.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/opensearch.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/pop3.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/rabbitmq.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/recipientrewritetable.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/redis.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/sieve.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/smtp-hooks.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/smtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/spam.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/ssl.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/tika.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/usersrepository.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/vault.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/configure/webadmin.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/extending/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/extending/mail-processing.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/extending/mailbox-listeners.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/extending/smtp-hooks.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/extending/webadmin-routes.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/objectives.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/cassandra-migration.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/cli.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/guide.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/logging.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/metrics.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/migrating.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/security.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/operate/webadmin.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/k8s-checklist.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/k8s-logsMetrics.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/k8s-secrets.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/k8s-values.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/run-docker.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/run-java.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-distributed-app/3.7.2/run/run-kubernetes.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
</urlset>
diff --git a/sitemap-james-project.xml b/sitemap-james-project.xml
index 9226d5650..ef819013a 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.2/community/contributing.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/download.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/guidelines.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/mailing-lists.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/release.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/support.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/community/website.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/configuration.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/glossary.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/mail/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/messages/imf.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/messages/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/messages/mime.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/processing/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/esmtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/imap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/jmap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/lmtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/pop.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/protocols/smtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/storage/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/storage/mailbox.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/storage/users.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/concepts/user/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/customization/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/development/deployment-tests.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/development/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/development/logging.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/15-minute-demo.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/5-minute-demo.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/architecture.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/concepts.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/conf/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/context.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/help.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/basic/objectives.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/demo.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/extendable.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/run.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.7.2/servers/test.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/contributing.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/download.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/guidelines.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/mailing-lists.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/release.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/support.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/community/website.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/configuration.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/glossary.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/mail/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/imf.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/messages/mime.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/processing/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/imap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/jmap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/pop.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/protocols/smtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/mailbox.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/storage/users.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/concepts/user/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/customization/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/development/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/development/logging.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/15-minute-demo.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/5-minute-demo.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/architecture.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/concepts.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/conf/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/context.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/help.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/basic/objectives.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/demo.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/consistency-model.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/architecture/specialized-instances.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/batchsizes.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/blobstore.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/cassandra.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/collecting-contacts.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/collecting-events.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/dns.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/domainlist.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/dsn.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/elasticsearch.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/extensions.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/healthcheck.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/imap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/jmap.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/jmx.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/listeners.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailetcontainer.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailets.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/mailrepositorystore.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/matchers.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/pop3.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/rabbitmq.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/recipientrewritetable.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/smtp-hooks.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/smtp.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/spam.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/ssl.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/tika.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/usersrepository.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/vault.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/configure/webadmin.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/mail-processing.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/mailbox-listeners.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/smtp-hooks.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/extending/webadmin-routes.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/objectives.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/cassandra-migration.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/cli.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/guide.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/logging.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/metrics.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/migrating.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/operate/webadmin.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/run-docker.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/distributed/run.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/extendable.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/run.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-project/3.6.0/servers/test.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
</urlset>
diff --git a/sitemap-james-site.xml b/sitemap-james-site.xml
index 485b7a16f..df7185e9c 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-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
<url>
<loc>https://james.apache.org/james-site/latest/index.html</loc>
-<lastmod>2022-10-25T07:02:53.880Z</lastmod>
+<lastmod>2022-10-26T06:00:47.313Z</lastmod>
</url>
</urlset>
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]