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

commit ad111ef73436ca0bfe280ac6a6ba597e8d967435
Author: jenkins <[email protected]>
AuthorDate: Fri Mar 6 20:53:54 2026 +0000

    Site checkin for project Apache James: Jenkins Tools
---
 .../servers/distributed/configure/smtp-hooks.html  |  85 ++
 .../servers/extendable/configure/smtp-hooks.html   |  85 ++
 .../servers/postgres/configure/smtp-hooks.html     |  85 ++
 sitemap-james-distributed-app.xml                  | 260 +++---
 sitemap-james-project.xml                          | 998 ++++++++++-----------
 sitemap-james-site.xml                             |   4 +-
 6 files changed, 886 insertions(+), 631 deletions(-)

diff --git a/james-project/3.10.0/servers/distributed/configure/smtp-hooks.html 
b/james-project/3.10.0/servers/distributed/configure/smtp-hooks.html
index efde0e604..728b3132f 100644
--- a/james-project/3.10.0/servers/distributed/configure/smtp-hooks.html
+++ b/james-project/3.10.0/servers/distributed/configure/smtp-hooks.html
@@ -819,6 +819,91 @@ behaves without of the box components.</p>
 </div>
 </div>
 <div class="sect1">
+<h2 id="_allowedunauthenticatedsender"><a class="anchor" 
href="#_allowedunauthenticatedsender"></a>AllowedUnauthenticatedSender</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>Some third-party devices and applications — printers, scanners, legacy apps 
— cannot easily support SMTP
+authentication. A common workaround is to whitelist their IP addresses via 
<code>&lt;authorizedAddresses&gt;</code> so they
+can relay without credentials. The downside is that any sender address is then 
accepted from those IPs.</p>
+</div>
+<div class="paragraph">
+<p><code>AllowedUnauthenticatedSender</code> closes this gap: it restricts 
which <code>MAIL FROM</code> addresses may be used by
+unauthenticated connections that benefit from the IP whitelist. It has no 
effect on authenticated sessions.</p>
+</div>
+<div class="paragraph">
+<p>The hook activates only when both conditions are true:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>relaying is allowed for the remote IP (i.e. the IP is in 
<code>&lt;authorizedAddresses&gt;</code>)</p>
+</li>
+<li>
+<p>no user is authenticated on the session</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Configuration options:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><strong>allowNullSender</strong> (optional, default <code>false</code>): 
whether to accept <code>MAIL FROM: &lt;&gt;</code> (null sender, used for
+bounce messages). Set to <code>true</code> if the whitelisted devices need to 
send delivery status notifications.</p>
+</li>
+<li>
+<p><strong>allowedSenders</strong>: list of <code>&lt;allowedSender&gt;</code> 
elements.</p>
+<div class="ulist">
+<ul>
+<li>
+<p>The element value is the email address that is permitted.</p>
+</li>
+<li>
+<p>The optional <strong>fromIps</strong> attribute further restricts which 
source IPs may use that sender address.
+It accepts a comma-separated list of CIDR ranges (e.g. 
<code>192.168.1.0/24,10.0.0.5/32</code>).
+When omitted, the sender is allowed from any whitelisted IP.</p>
+</li>
+</ul>
+</div>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Example configuration:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="highlightjs highlight"><code class="language-xml hljs" 
data-lang="xml">&lt;smtpserver enabled="true"&gt;
+    &lt;...&gt; &lt;!-- The rest of your SMTP configuration --&gt;
+    
&lt;authorizedAddresses&gt;127.0.0.0/8,192.168.1.0/24&lt;/authorizedAddresses&gt;
+    &lt;handlerchain&gt;
+        &lt;handler 
class="org.apache.james.smtpserver.fastfail.AllowedUnauthenticatedSender"&gt;
+            &lt;allowNullSender&gt;false&lt;/allowNullSender&gt;
+            &lt;allowedSenders&gt;
+                &lt;!-- allowed from any whitelisted IP --&gt;
+                &lt;allowedSender&gt;[email protected]&lt;/allowedSender&gt;
+                &lt;!-- allowed only from a specific subnet --&gt;
+                &lt;allowedSender 
fromIps="192.168.1.0/24"&gt;[email protected]&lt;/allowedSender&gt;
+                &lt;!-- allowed from several specific ranges --&gt;
+                &lt;allowedSender 
fromIps="172.34.56.0/24,172.34.53.123/32"&gt;[email protected]&lt;/allowedSender&gt;
+            &lt;/allowedSenders&gt;
+        &lt;/handler&gt;
+        &lt;handler 
class="org.apache.james.smtpserver.CoreCmdHandlerLoader"/&gt;
+    &lt;/handlerchain&gt;
+&lt;/smtpserver&gt;</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Connections from a non-whitelisted IP are not affected by this hook and 
follow the normal relay rules.</p>
+</div>
+<div class="paragraph">
+<p>Unauthenticated connections from a whitelisted IP that present a sender 
address not covered by any
+<code>&lt;allowedSender&gt;</code> entry receive a permanent <code>550</code> 
rejection.</p>
+</div>
+</div>
+</div>
+<div class="sect1">
 <h2 id="_dnsrblhandler"><a class="anchor" 
href="#_dnsrblhandler"></a>DNSRBLHandler</h2>
 <div class="sectionbody">
 <div class="paragraph">
diff --git a/james-project/3.10.0/servers/extendable/configure/smtp-hooks.html 
b/james-project/3.10.0/servers/extendable/configure/smtp-hooks.html
index 3df760f31..cfa8abcec 100644
--- a/james-project/3.10.0/servers/extendable/configure/smtp-hooks.html
+++ b/james-project/3.10.0/servers/extendable/configure/smtp-hooks.html
@@ -814,6 +814,91 @@ behaves without of the box components.</p>
 </div>
 </div>
 <div class="sect1">
+<h2 id="_allowedunauthenticatedsender"><a class="anchor" 
href="#_allowedunauthenticatedsender"></a>AllowedUnauthenticatedSender</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>Some third-party devices and applications — printers, scanners, legacy apps 
— cannot easily support SMTP
+authentication. A common workaround is to whitelist their IP addresses via 
<code>&lt;authorizedAddresses&gt;</code> so they
+can relay without credentials. The downside is that any sender address is then 
accepted from those IPs.</p>
+</div>
+<div class="paragraph">
+<p><code>AllowedUnauthenticatedSender</code> closes this gap: it restricts 
which <code>MAIL FROM</code> addresses may be used by
+unauthenticated connections that benefit from the IP whitelist. It has no 
effect on authenticated sessions.</p>
+</div>
+<div class="paragraph">
+<p>The hook activates only when both conditions are true:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>relaying is allowed for the remote IP (i.e. the IP is in 
<code>&lt;authorizedAddresses&gt;</code>)</p>
+</li>
+<li>
+<p>no user is authenticated on the session</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Configuration options:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><strong>allowNullSender</strong> (optional, default <code>false</code>): 
whether to accept <code>MAIL FROM: &lt;&gt;</code> (null sender, used for
+bounce messages). Set to <code>true</code> if the whitelisted devices need to 
send delivery status notifications.</p>
+</li>
+<li>
+<p><strong>allowedSenders</strong>: list of <code>&lt;allowedSender&gt;</code> 
elements.</p>
+<div class="ulist">
+<ul>
+<li>
+<p>The element value is the email address that is permitted.</p>
+</li>
+<li>
+<p>The optional <strong>fromIps</strong> attribute further restricts which 
source IPs may use that sender address.
+It accepts a comma-separated list of CIDR ranges (e.g. 
<code>192.168.1.0/24,10.0.0.5/32</code>).
+When omitted, the sender is allowed from any whitelisted IP.</p>
+</li>
+</ul>
+</div>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Example configuration:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="highlightjs highlight"><code class="language-xml hljs" 
data-lang="xml">&lt;smtpserver enabled="true"&gt;
+    &lt;...&gt; &lt;!-- The rest of your SMTP configuration --&gt;
+    
&lt;authorizedAddresses&gt;127.0.0.0/8,192.168.1.0/24&lt;/authorizedAddresses&gt;
+    &lt;handlerchain&gt;
+        &lt;handler 
class="org.apache.james.smtpserver.fastfail.AllowedUnauthenticatedSender"&gt;
+            &lt;allowNullSender&gt;false&lt;/allowNullSender&gt;
+            &lt;allowedSenders&gt;
+                &lt;!-- allowed from any whitelisted IP --&gt;
+                &lt;allowedSender&gt;[email protected]&lt;/allowedSender&gt;
+                &lt;!-- allowed only from a specific subnet --&gt;
+                &lt;allowedSender 
fromIps="192.168.1.0/24"&gt;[email protected]&lt;/allowedSender&gt;
+                &lt;!-- allowed from several specific ranges --&gt;
+                &lt;allowedSender 
fromIps="172.34.56.0/24,172.34.53.123/32"&gt;[email protected]&lt;/allowedSender&gt;
+            &lt;/allowedSenders&gt;
+        &lt;/handler&gt;
+        &lt;handler 
class="org.apache.james.smtpserver.CoreCmdHandlerLoader"/&gt;
+    &lt;/handlerchain&gt;
+&lt;/smtpserver&gt;</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Connections from a non-whitelisted IP are not affected by this hook and 
follow the normal relay rules.</p>
+</div>
+<div class="paragraph">
+<p>Unauthenticated connections from a whitelisted IP that present a sender 
address not covered by any
+<code>&lt;allowedSender&gt;</code> entry receive a permanent <code>550</code> 
rejection.</p>
+</div>
+</div>
+</div>
+<div class="sect1">
 <h2 id="_dnsrblhandler"><a class="anchor" 
href="#_dnsrblhandler"></a>DNSRBLHandler</h2>
 <div class="sectionbody">
 <div class="paragraph">
diff --git a/james-project/3.10.0/servers/postgres/configure/smtp-hooks.html 
b/james-project/3.10.0/servers/postgres/configure/smtp-hooks.html
index f047e8698..19a4c1ed3 100644
--- a/james-project/3.10.0/servers/postgres/configure/smtp-hooks.html
+++ b/james-project/3.10.0/servers/postgres/configure/smtp-hooks.html
@@ -819,6 +819,91 @@ behaves without of the box components.</p>
 </div>
 </div>
 <div class="sect1">
+<h2 id="_allowedunauthenticatedsender"><a class="anchor" 
href="#_allowedunauthenticatedsender"></a>AllowedUnauthenticatedSender</h2>
+<div class="sectionbody">
+<div class="paragraph">
+<p>Some third-party devices and applications — printers, scanners, legacy apps 
— cannot easily support SMTP
+authentication. A common workaround is to whitelist their IP addresses via 
<code>&lt;authorizedAddresses&gt;</code> so they
+can relay without credentials. The downside is that any sender address is then 
accepted from those IPs.</p>
+</div>
+<div class="paragraph">
+<p><code>AllowedUnauthenticatedSender</code> closes this gap: it restricts 
which <code>MAIL FROM</code> addresses may be used by
+unauthenticated connections that benefit from the IP whitelist. It has no 
effect on authenticated sessions.</p>
+</div>
+<div class="paragraph">
+<p>The hook activates only when both conditions are true:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p>relaying is allowed for the remote IP (i.e. the IP is in 
<code>&lt;authorizedAddresses&gt;</code>)</p>
+</li>
+<li>
+<p>no user is authenticated on the session</p>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Configuration options:</p>
+</div>
+<div class="ulist">
+<ul>
+<li>
+<p><strong>allowNullSender</strong> (optional, default <code>false</code>): 
whether to accept <code>MAIL FROM: &lt;&gt;</code> (null sender, used for
+bounce messages). Set to <code>true</code> if the whitelisted devices need to 
send delivery status notifications.</p>
+</li>
+<li>
+<p><strong>allowedSenders</strong>: list of <code>&lt;allowedSender&gt;</code> 
elements.</p>
+<div class="ulist">
+<ul>
+<li>
+<p>The element value is the email address that is permitted.</p>
+</li>
+<li>
+<p>The optional <strong>fromIps</strong> attribute further restricts which 
source IPs may use that sender address.
+It accepts a comma-separated list of CIDR ranges (e.g. 
<code>192.168.1.0/24,10.0.0.5/32</code>).
+When omitted, the sender is allowed from any whitelisted IP.</p>
+</li>
+</ul>
+</div>
+</li>
+</ul>
+</div>
+<div class="paragraph">
+<p>Example configuration:</p>
+</div>
+<div class="listingblock">
+<div class="content">
+<pre class="highlightjs highlight"><code class="language-xml hljs" 
data-lang="xml">&lt;smtpserver enabled="true"&gt;
+    &lt;...&gt; &lt;!-- The rest of your SMTP configuration --&gt;
+    
&lt;authorizedAddresses&gt;127.0.0.0/8,192.168.1.0/24&lt;/authorizedAddresses&gt;
+    &lt;handlerchain&gt;
+        &lt;handler 
class="org.apache.james.smtpserver.fastfail.AllowedUnauthenticatedSender"&gt;
+            &lt;allowNullSender&gt;false&lt;/allowNullSender&gt;
+            &lt;allowedSenders&gt;
+                &lt;!-- allowed from any whitelisted IP --&gt;
+                &lt;allowedSender&gt;[email protected]&lt;/allowedSender&gt;
+                &lt;!-- allowed only from a specific subnet --&gt;
+                &lt;allowedSender 
fromIps="192.168.1.0/24"&gt;[email protected]&lt;/allowedSender&gt;
+                &lt;!-- allowed from several specific ranges --&gt;
+                &lt;allowedSender 
fromIps="172.34.56.0/24,172.34.53.123/32"&gt;[email protected]&lt;/allowedSender&gt;
+            &lt;/allowedSenders&gt;
+        &lt;/handler&gt;
+        &lt;handler 
class="org.apache.james.smtpserver.CoreCmdHandlerLoader"/&gt;
+    &lt;/handlerchain&gt;
+&lt;/smtpserver&gt;</code></pre>
+</div>
+</div>
+<div class="paragraph">
+<p>Connections from a non-whitelisted IP are not affected by this hook and 
follow the normal relay rules.</p>
+</div>
+<div class="paragraph">
+<p>Unauthenticated connections from a whitelisted IP that present a sender 
address not covered by any
+<code>&lt;allowedSender&gt;</code> entry receive a permanent <code>550</code> 
rejection.</p>
+</div>
+</div>
+</div>
+<div class="sect1">
 <h2 id="_dnsrblhandler"><a class="anchor" 
href="#_dnsrblhandler"></a>DNSRBLHandler</h2>
 <div class="sectionbody">
 <div class="paragraph">
diff --git a/sitemap-james-distributed-app.xml 
b/sitemap-james-distributed-app.xml
index 4941f3849..588b25d35 100644
--- a/sitemap-james-distributed-app.xml
+++ b/sitemap-james-distributed-app.xml
@@ -2,522 +2,522 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9";>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.9.0/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/architecture/consistency-model.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/architecture/implemented-standards.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/architecture/specialized-instances.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/benchmark/db-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/benchmark/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/benchmark/james-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/batchsizes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/blobstore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/cassandra.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/collecting-contacts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/collecting-events.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/dns.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/dsn.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/extensions.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/healthcheck.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/jmx.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/jvm.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/mailetcontainer.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/mailrepositorystore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/opensearch.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/pop3.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/rabbitmq.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/recipientrewritetable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/redis.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/sieve.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/spam.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/ssl.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/tika.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/usersrepository.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/vault.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/extending/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/extending/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/extending/mail-processing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/extending/mailbox-listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/extending/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/extending/webadmin-routes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.8.1/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.8.1/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/cassandra-migration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/cli.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/guide.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/metrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/migrating.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/performanceChecklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/security.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/operate/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.8.1/run/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/k8s-checklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/k8s-logsMetrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/k8s-secrets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/k8s-values.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/run-docker.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/run-java.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.8.1/run/run-kubernetes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/architecture/consistency-model.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/architecture/specialized-instances.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/batchsizes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/blobstore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/cassandra.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/collecting-contacts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/collecting-events.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/dns.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/dsn.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/elasticsearch.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/extensions.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/healthcheck.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/jmx.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/jvm.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/mailetcontainer.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/mailrepositorystore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/pop3.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/rabbitmq.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/recipientrewritetable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/sieve.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/spam.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/ssl.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/tika.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/usersrepository.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/vault.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/extending/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/extending/mail-processing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/extending/mailbox-listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/extending/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/extending/webadmin-routes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.7.5/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.7.5/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/cassandra-migration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/cli.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/guide.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/metrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/migrating.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/security.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/operate/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-distributed-app/3.7.5/run/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/k8s-checklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/k8s-logsMetrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/k8s-secrets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/k8s-values.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/run-docker.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/run-java.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-distributed-app/3.7.5/run/run-kubernetes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-james-project.xml b/sitemap-james-project.xml
index 676f45e63..eae3adf55 100644
--- a/sitemap-james-project.xml
+++ b/sitemap-james-project.xml
@@ -2,1998 +2,1998 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9";>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/community/contributing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/community/download.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/community/guidelines.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/community/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/community/mailing-lists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/community/release.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/community/support.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/community/website.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/configuration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/concepts/glossary.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/concepts/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/mail/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/messages/imf.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/messages/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/messages/mime.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/operation/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/processing/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/pop.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/protocols/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/storage/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/storage/mailbox.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/storage/users.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/concepts/user/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/development/deployment-tests.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/development/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/development/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/15-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/5-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/architecture.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/concepts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/context.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/help.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/basic/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/servers/demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/consistency_model_data_replication_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/consistency-model.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/data-tiering.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/implemented-standards.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/mailqueue_combined_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/architecture/specialized-instances.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/benchmark/benchmark_prepare.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/benchmark/db-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/benchmark/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/benchmark/james-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/batchsizes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/blobstore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/cassandra.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/collecting-contacts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/collecting-events.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/dns.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/droplists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/dsn.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/extensions.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/healthcheck.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/jmx.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/jvm.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/mailetcontainer.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/mailrepositorystore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/mta-sts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/opensearch.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/pop3.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/queue.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/rabbitmq.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/recipientrewritetable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/redis.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/search.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/sieve.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/spam.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/ssl.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/tika.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/usersrepository.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/vault.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/customization/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/customization/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/customization/mail-processing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/customization/mailbox-listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/customization/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/customization/webadmin-routes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/extending.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/cassandra-migration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/cli.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/guide.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/logging/docker-compose-block.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/metrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/migrating.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/performanceChecklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/security.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/webadmin/admin-mail-queues-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/webadmin/admin-mailboxes-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/operate/webadmin/admin-messages-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/k8s-checklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/k8s-logsMetrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/k8s-secrets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/k8s-values.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/run-docker.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/run-java.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/distributed/run/run-kubernetes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/customization/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/customization/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/customization/mail-processing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/customization/mailbox-listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/customization/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/customization/webadmin-routes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/extending.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/extendable/variables.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/servers/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/architecture/consistency_model_data_replication_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/architecture/consistency-model.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/architecture/implemented-standards.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/architecture/mailqueue_combined_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/architecture/specialized-instances.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/benchmark/benchmark_prepare.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/benchmark/db-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/benchmark/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/benchmark/james-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/batchsizes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/blobstore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/collecting-contacts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/collecting-events.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/dns.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/droplists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/dsn.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/extensions.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/healthcheck.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/jmx.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/jvm.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/mailetcontainer.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/mailrepositorystore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/mta-sts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/opensearch.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/pop3.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/queue.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/rabbitmq.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/recipientrewritetable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/redis.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/search.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/sieve.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/spam.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/ssl.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/tika.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/usersrepository.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/vault.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/customization/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/customization/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/customization/mail-processing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/customization/mailbox-listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/customization/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/customization/webadmin-routes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/cli.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/guide.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/logging/docker-compose-block.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/metrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/migrating.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/performanceChecklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/security.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/webadmin/admin-mail-queues-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/webadmin/admin-mailboxes-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/operate/webadmin/admin-messages-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/run/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/run/run-docker.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.10.0/servers/postgres/run/run-java.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/servers/run.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.10.0/servers/test.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/community/contributing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/community/download.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/community/guidelines.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/community/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/community/mailing-lists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/community/release.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/community/support.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/community/website.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/configuration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/concepts/glossary.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/concepts/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/mail/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/messages/imf.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/messages/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/messages/mime.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/processing/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/esmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/lmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/pop.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/protocols/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/storage/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/storage/mailbox.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/storage/users.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/concepts/user/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/customization/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/customization/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/customization/mail-processing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/customization/mailbox-listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/customization/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/customization/webadmin-routes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/development/deployment-tests.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/development/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/development/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/15-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/5-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/basic/architecture.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/basic/concepts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/basic/conf/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/basic/context.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/servers/basic/help.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/basic/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/basic/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/servers/demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/consistency_model_data_replication_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/consistency-model.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/data-tiering.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/implemented-standards.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/mailqueue_combined_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/architecture/specialized-instances.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/benchmark/benchmark_prepare.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/benchmark/db-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/benchmark/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/benchmark/james-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/batchsizes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/blobstore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/cassandra.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/collecting-contacts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/collecting-events.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/dns.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/droplists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/dsn.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/extensions.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/healthcheck.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/jmx.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/jvm.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/mailetcontainer.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/mailrepositorystore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/mat-sts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/opensearch.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/pop3.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/queue.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/rabbitmq.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/recipientrewritetable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/redis.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/search.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/sieve.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/spam.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/ssl.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/tika.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/usersrepository.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/vault.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/extending.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/cassandra-migration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/cli.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/guide.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/logging/docker-compose-block.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/metrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/migrating.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/performanceChecklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/security.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/webadmin/admin-mail-queues-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/webadmin/admin-mailboxes-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/operate/webadmin/admin-messages-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/k8s-checklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/k8s-logsMetrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/k8s-secrets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/k8s-values.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/run-docker.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/run-java.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/distributed/run/run-kubernetes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/servers/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/architecture/consistency_model_data_replication_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/architecture/consistency-model.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/architecture/implemented-standards.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/architecture/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/architecture/mailqueue_combined_extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/architecture/specialized-instances.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/benchmark/benchmark_prepare.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/benchmark/db-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/benchmark/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/benchmark/james-benchmark.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/batchsizes.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/blobstore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/collecting-contacts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/collecting-events.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/dns.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/domainlist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/droplists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/dsn.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/extensions.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/healthcheck.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/jmx.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/jvm.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/listeners.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/mailetcontainer.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/mailets.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/mailrepositorystore.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/mat-sts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/matchers.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/opensearch.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/pop3.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/queue.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/rabbitmq.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/recipientrewritetable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/redis.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/remote-delivery-error-handling.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/search.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/sieve.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/smtp-hooks.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/spam.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/ssl.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/tika.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/usersrepository.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/vault.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/configure/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/extending.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/extending/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/cli.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/guide.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/logging/docker-compose-block.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/metrics.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/migrating.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/performanceChecklist.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/security.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/webadmin.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/webadmin/admin-mail-queues-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/webadmin/admin-mailboxes-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/operate/webadmin/admin-messages-extend.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/run/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/run/run-docker.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.9.0/servers/postgres/run/run-java.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/servers/run.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.9.0/servers/test.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/community/contributing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/community/download.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/community/guidelines.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/community/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/community/mailing-lists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/community/release.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/community/support.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/community/website.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/configuration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/concepts/glossary.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/concepts/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/mail/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/messages/imf.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/messages/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/messages/mime.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/processing/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/esmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/lmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/pop.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/protocols/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/storage/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/storage/mailbox.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/storage/users.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/concepts/user/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/customization/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/development/deployment-tests.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/development/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/development/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/15-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/5-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/basic/architecture.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/basic/concepts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/basic/conf/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/basic/context.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/servers/basic/help.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/basic/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.8.2/servers/basic/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/servers/demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/servers/extendable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/servers/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/servers/run.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.8.2/servers/test.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/community/contributing.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/community/download.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/community/guidelines.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/community/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/community/mailing-lists.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/community/release.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/community/support.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/community/website.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/configuration.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/concepts/glossary.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/concepts/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/mail/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/messages/imf.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/messages/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/messages/mime.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/processing/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/esmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/imap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/jmap.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/lmtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/pop.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/protocols/smtp.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/storage/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/storage/mailbox.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/storage/users.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/concepts/user/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/customization/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/development/deployment-tests.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/development/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/development/logging.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/15-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/5-minute-demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/basic/architecture.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/basic/concepts.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/basic/conf/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/basic/context.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/servers/basic/help.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/basic/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 
<loc>https://james.apache.org/james-project/3.7.5/servers/basic/objectives.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/servers/demo.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/servers/extendable.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/servers/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/servers/run.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-project/3.7.5/servers/test.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-james-site.xml b/sitemap-james-site.xml
index 0f751345d..961a6b498 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>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 <url>
 <loc>https://james.apache.org/james-site/latest/index.html</loc>
-<lastmod>2026-03-06T08:58:07.359Z</lastmod>
+<lastmod>2026-03-06T20:53:30.049Z</lastmod>
 </url>
 </urlset>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to