Dieser Commit ist enthalten in:
MAGICCC 2021-08-19 19:06:39 +00:00
Ursprung 45aeab45b8
Commit b7da9f5925
4 geänderte Dateien mit 133 neuen und 133 gelöschten Zeilen

Datei anzeigen

@ -2130,48 +2130,48 @@ backend mailcow
<p>So, first of all, we are going to disable the acme-mailcow container since we'll use the certs that traefik will provide us. <p>So, first of all, we are going to disable the acme-mailcow container since we'll use the certs that traefik will provide us.
For this we'll have to set <code>SKIP_LETS_ENCRYPT=y</code> on our <code>mailcow.conf</code>, and run <code>docker-compose up -d</code> to apply the changes.</p> For this we'll have to set <code>SKIP_LETS_ENCRYPT=y</code> on our <code>mailcow.conf</code>, and run <code>docker-compose up -d</code> to apply the changes.</p>
<p>Then we'll create a <code>docker-compose.override.yml</code> file in order to override the main <code>docker-compose.yml</code> found in your mailcow root folder. </p> <p>Then we'll create a <code>docker-compose.override.yml</code> file in order to override the main <code>docker-compose.yml</code> found in your mailcow root folder. </p>
<div class="highlight"><pre><span></span><code>version: &#39;2.1&#39; <div class="highlight"><pre><span></span><code><span class="nt">version</span><span class="p">:</span> <span class="s">&#39;2.1&#39;</span>
services: <span class="nt">services</span><span class="p">:</span>
nginx-mailcow: <span class="nt">nginx-mailcow</span><span class="p">:</span>
networks: <span class="nt">networks</span><span class="p">:</span>
# add Traefik&#39;s network <span class="c1"># add Traefik&#39;s network</span>
web: <span class="nt">web</span><span class="p">:</span>
labels: <span class="nt">labels</span><span class="p">:</span>
- traefik.enable=true <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.enable=true</span>
# Creates a router called &quot;moo&quot; for the container, and sets up a rule to link the container to certain rule, <span class="c1"># Creates a router called &quot;moo&quot; for the container, and sets up a rule to link the container to certain rule,</span>
# in this case, a Host rule with our MAILCOW_HOSTNAME var. <span class="c1"># in this case, a Host rule with our MAILCOW_HOSTNAME var.</span>
- traefik.http.routers.moo.rule=Host(`${MAILCOW_HOSTNAME}`) <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.rule=Host(`${MAILCOW_HOSTNAME}`)</span>
# Enables tls over the router we created before. <span class="c1"># Enables tls over the router we created before.</span>
- traefik.http.routers.moo.tls=true <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.tls=true</span>
# Specifies which kind of cert resolver we&#39;ll use, in this case le (Lets Encrypt). <span class="c1"># Specifies which kind of cert resolver we&#39;ll use, in this case le (Lets Encrypt).</span>
- traefik.http.routers.moo.tls.certresolver=le <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.tls.certresolver=le</span>
# Creates a service called &quot;moo&quot; for the container, and specifies which internal port of the container <span class="c1"># Creates a service called &quot;moo&quot; for the container, and specifies which internal port of the container</span>
# should traefik route the incoming data to. <span class="c1"># should traefik route the incoming data to.</span>
- traefik.http.services.moo.loadbalancer.server.port=80 <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.http.services.moo.loadbalancer.server.port=${HTTP_PORT}</span>
# Specifies which entrypoint (external port) should traefik listen to, for this container. <span class="c1"># Specifies which entrypoint (external port) should traefik listen to, for this container.</span>
# websecure being port 443, check the traefik.toml file liked above. <span class="c1"># websecure being port 443, check the traefik.toml file liked above.</span>
- traefik.http.routers.moo.entrypoints=secure <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.entrypoints=websecure</span>
# Make sure traefik uses the web network, not the mailcowdockerized_mailcow-network <span class="c1"># Make sure traefik uses the web network, not the mailcowdockerized_mailcow-network</span>
- traefik.docker.network=web <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">traefik.docker.network=web</span>
certdumper: <span class="nt">certdumper</span><span class="p">:</span>
image: humenius/traefik-certs-dumper <span class="nt">image</span><span class="p">:</span> <span class="l l-Scalar l-Scalar-Plain">humenius/traefik-certs-dumper</span>
container_name: traefik_certdumper <span class="nt">container_name</span><span class="p">:</span> <span class="l l-Scalar l-Scalar-Plain">traefik_certdumper</span>
network_mode: none <span class="nt">network_mode</span><span class="p">:</span> <span class="l l-Scalar l-Scalar-Plain">none</span>
volumes: <span class="nt">volumes</span><span class="p">:</span>
# mount the folder which contains Traefik&#39;s `acme.json&#39; file <span class="c1"># mount the folder which contains Traefik&#39;s `acme.json&#39; file</span>
# in this case Traefik is started from its own docker-compose in ../traefik <span class="c1"># in this case Traefik is started from its own docker-compose in ../traefik</span>
- ../traefik/data:/traefik:ro <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">../traefik/data:/traefik:ro</span>
# mount mailcow&#39;s SSL folder <span class="c1"># mount mailcow&#39;s SSL folder</span>
- ./data/assets/ssl/:/output:rw <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">./data/assets/ssl/:/output:rw</span>
environment: <span class="nt">environment</span><span class="p">:</span>
# only change this, if you&#39;re using another domain for mailcow&#39;s web frontend compared to the standard config <span class="c1"># only change this, if you&#39;re using another domain for mailcow&#39;s web frontend compared to the standard config</span>
- DOMAIN=${MAILCOW_HOSTNAME} <span class="p p-Indicator">-</span> <span class="l l-Scalar l-Scalar-Plain">DOMAIN=${MAILCOW_HOSTNAME}</span>
networks: <span class="nt">networks</span><span class="p">:</span>
web: <span class="nt">web</span><span class="p">:</span>
external: true <span class="nt">external</span><span class="p">:</span> <span class="l l-Scalar l-Scalar-Plain">true</span>
</code></pre></div> </code></pre></div>
<p>Start the new containers with <code>docker-compose up -d</code>.</p> <p>Start the new containers with <code>docker-compose up -d</code>.</p>
<p>Now, there's only one thing left to do, which is setup the certs so that the mail services can use them as well, since Traefik 2 uses an acme v2 format to save ALL the license from all the domains we have, we'll need to find a way to dump the certs, lucky we have <a href="https://hub.docker.com/r/humenius/traefik-certs-dumper">this tiny container</a> which grabs the <code>acme.json</code> file trough a volume, and a variable <code>DOMAIN=example.org</code>, and with these, the container will output the <code>cert.pem</code> and <code>key.pem</code> files, for this we'll simply run the <code>traefik-certs-dumper</code> container binding the <code>/traefik</code> volume to the folder where our <code>acme.json</code> is saved, bind the <code>/output</code> volume to our mailcow <code>data/assets/ssl/</code> folder, and set up the <code>DOMAIN=example.org</code> variable to the domain we want the certs dumped from. </p> <p>Now, there's only one thing left to do, which is setup the certs so that the mail services can use them as well, since Traefik 2 uses an acme v2 format to save ALL the license from all the domains we have, we'll need to find a way to dump the certs, lucky we have <a href="https://hub.docker.com/r/humenius/traefik-certs-dumper">this tiny container</a> which grabs the <code>acme.json</code> file trough a volume, and a variable <code>DOMAIN=example.org</code>, and with these, the container will output the <code>cert.pem</code> and <code>key.pem</code> files, for this we'll simply run the <code>traefik-certs-dumper</code> container binding the <code>/traefik</code> volume to the folder where our <code>acme.json</code> is saved, bind the <code>/output</code> volume to our mailcow <code>data/assets/ssl/</code> folder, and set up the <code>DOMAIN=example.org</code> variable to the domain we want the certs dumped from. </p>

Dateidiff unterdrĂĽckt, weil mindestens eine Zeile zu lang ist

Datei anzeigen

@ -2,467 +2,467 @@
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/b_n_r_accidental_deletion/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/b_n_r_accidental_deletion/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/b_n_r_backup/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/b_n_r_backup/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/b_n_r_restore/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/b_n_r_restore/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-admin_login_sogo/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-admin_login_sogo/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-attach_service/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-attach_service/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-common_problems/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-common_problems/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-logs/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-logs/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-mysql_upgrade/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-mysql_upgrade/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-reset-tls/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-reset-tls/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-reset_pw/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-reset_pw/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-rm_volumes/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug-rm_volumes/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/debug/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/debug/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-disable_ipv6/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-disable_ipv6/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-ip_bindings/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-ip_bindings/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-local_mta/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-local_mta/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-logging/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-logging/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-relayhost/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-relayhost/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-rp/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-rp/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-rspamd_ui/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-rspamd_ui/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-snat/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-snat/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-ssl/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-ssl/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-sync_jobs_migration/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-sync_jobs_migration/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-trust_networks/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/firststeps-trust_networks/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_deinstall/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_deinstall/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_install/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_install/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_migration/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_migration/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_update/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m_update/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/model-acl/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/model-acl/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/model-passwd/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/model-passwd/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/model-sender_rcv/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/model-sender_rcv/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/prerequisite-dns/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/prerequisite-dns/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/prerequisite-system/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/prerequisite-system/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/restrictions_ip_accss/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/restrictions_ip_accss/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-borgmatic/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-borgmatic/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-exchange_onprem/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-exchange_onprem/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-gitea/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-gitea/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-gogs/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-gogs/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-mailpiler_integration/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-mailpiler_integration/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-nextcloud/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-nextcloud/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-portainer/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-portainer/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-roundcube/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-roundcube/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-thunderbird/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party-thunderbird/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-80_to_443/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-80_to_443/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-autodiscover_config/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-autodiscover_config/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-backup_restore-maildir/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-backup_restore-maildir/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-backup_restore-mysql/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-backup_restore-mysql/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-docker-cust_dockerfiles/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-docker-cust_dockerfiles/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-docker-dc_bash_compl/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-docker-dc_bash_compl/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-any_acl/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-any_acl/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-expunge/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-expunge/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-extra_conf/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-extra_conf/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-fts/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-fts/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-idle_interval/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-idle_interval/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-mail-crypt/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-mail-crypt/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-more/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-more/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-public_folder/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-public_folder/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-static_master/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-static_master/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-vmail-volume/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-dovecot-vmail-volume/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-fido2/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-fido2/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-bl_wl/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-bl_wl/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-config/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-config/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-css/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-css/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-pushover/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-pushover/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-spamalias/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-spamalias/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-spamfilter/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-spamfilter/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-tagging/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-tagging/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-tfa/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-mailcow_ui-tfa/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-nginx/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-nginx/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-attachment_size/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-attachment_size/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-custom_transport/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-custom_transport/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-disable_sender_verification/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-disable_sender_verification/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-extra_cf/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-extra_cf/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-pflogsumm/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-pflogsumm/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-postscreen_whitelist/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-postfix-postscreen_whitelist/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-redis/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-redis/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-reeanble-weak-protocols/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-reeanble-weak-protocols/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-rspamd/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-rspamd/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-sogo/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-sogo/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-unbound-fwd/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-unbound-fwd/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-update-hooks/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-update-hooks/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-webmail-site/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-webmail-site/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-why_unbound/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/u_e-why_unbound/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-android/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-android/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-apple/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-apple/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-emclient/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-emclient/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-kontact/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-kontact/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-manual/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-manual/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-outlook/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-outlook/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-thunderbird/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-thunderbird/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-windows/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-windows/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
<url> <url>
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-windowsphone/</loc> <loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-windowsphone/</loc>
<lastmod>2021-08-16</lastmod> <lastmod>2021-08-19</lastmod>
<changefreq>daily</changefreq> <changefreq>daily</changefreq>
</url> </url>
</urlset> </urlset>

Binäre Datei nicht angezeigt.