Deploying to gh-pages from @ mailcow/mailcow-dockerized-docs@0c1ebe2b1c 🚀
Dieser Commit ist enthalten in:
Ursprung
6d56801b32
Commit
bd6374eb32
4 geänderte Dateien mit 104 neuen und 146 gelöschten Zeilen
|
@ -2565,49 +2565,6 @@ Dazu mĂĽssen wir <code>SKIP_LETS_ENCRYPT=y</code> in unserer <code>mailcow.conf<
|
|||
<span class="nt">services</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">nginx-mailcow</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">networks</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># add Traefik's network</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">web</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">labels</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.enable=true</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Creates a router called "moo" for the container, and sets up a rule to link the container to certain rule,</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># in this case, a Host rule with our MAILCOW_HOSTNAME var.</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.rule=Host(`${MAILCOW_HOSTNAME}`)</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Enables tls over the router we created before.</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.tls=true</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Specifies which kind of cert resolver we'll use, in this case le (Lets Encrypt).</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.tls.certresolver=le</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Creates a service called "moo" for the container, and specifies which internal port of the container</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># should traefik route the incoming data to.</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.http.services.moo.loadbalancer.server.port=${HTTP_PORT}</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Specifies which entrypoint (external port) should traefik listen to, for this container.</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># websecure being port 443, check the traefik.toml file liked above.</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.http.routers.moo.entrypoints=websecure</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Make sure traefik uses the web network, not the mailcowdockerized_mailcow-network</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik.docker.network=web</span><span class="w"></span>
|
||||
|
||||
<span class="w"> </span><span class="nt">certdumper</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">image</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">humenius/traefik-certs-dumper</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">container_name</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik_certdumper</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">network_mode</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">none</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">volumes</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># mount the folder which contains Traefik's `acme.json' file</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># in this case Traefik is started from its own docker-compose in ../traefik</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">../traefik/data:/traefik:ro</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># mount mailcow's SSL folder</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">./data/assets/ssl/:/output:rw</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">restart</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">always</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">environment</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># only change this, if you're using another domain for mailcow's web frontend compared to the standard config</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">DOMAIN=${MAILCOW_HOSTNAME}</span><span class="w"></span>
|
||||
|
||||
<span class="nt">networks</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">web</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">external</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">true</span><span class="w"></span>
|
||||
<span class="nt">Version</span><span class="p">:</span><span class="w"> </span><span class="s">'2.1'</span><span class="w"></span>
|
||||
|
||||
<span class="nt">Dienste</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">nginx-mailcow</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">Netzwerke</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Traefiks Netzwerk hinzufĂĽgen</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">web</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">labels</span><span class="p">:</span><span class="w"></span>
|
||||
|
@ -2631,20 +2588,21 @@ Dazu mĂĽssen wir <code>SKIP_LETS_ENCRYPT=y</code> in unserer <code>mailcow.conf<
|
|||
<span class="w"> </span><span class="nt">certdumper</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">image</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">humenius/traefik-certs-dumper</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">container_name</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">traefik_certdumper</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">network_mode</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">keine</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">network_mode</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">none</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">volumes</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># mounten Sie den Ordner, der Traefiks `acme.json' Datei enthält</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># in diesem Fall wird Traefik von seinem eigenen docker-compose in ../traefik gestartet</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">../traefik/data:/traefik:ro</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># SSL-Ordner von mailcow einhängen</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">./data/assets/ssl/:/output:rw</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">Umgebung</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">restart</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">always</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">environment</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="c1"># Ă„ndern Sie dies nur, wenn Sie eine andere Domain fĂĽr Mailcows Web-Frontend verwenden als in der Standard-Konfiguration</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="p p-Indicator">-</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">DOMAIN=${MAILCOW_HOSTNAME}</span><span class="w"></span>
|
||||
|
||||
<span class="nt">Netzwerke</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="nt">networks</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">web</span><span class="p">:</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">extern</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">true</span><span class="w"></span>
|
||||
<span class="w"> </span><span class="nt">external</span><span class="p">:</span><span class="w"> </span><span class="l l-Scalar l-Scalar-Plain">true</span><span class="w"></span>
|
||||
</code></pre></div>
|
||||
<p>Starten Sie die neuen Container mit <code>docker-compose up -d</code>.</p>
|
||||
<p>Da Traefik 2 ein acme v2 Format verwendet, um ALLE Lizenzen von allen Domains zu speichern, mĂĽssen wir einen Weg finden, die Zertifikate auszulagern. Zum GlĂĽck haben wir [diesen kleinen Container] (<a href="https://hub.docker.com/r/humenius/traefik-certs-dumper">https://hub.docker.com/r/humenius/traefik-certs-dumper</a>), der die Datei <code>acme.json</code> ĂĽber ein Volume und eine Variable <code>DOMAIN=example. org</code>, und damit wird der Container die <code>cert.pem</code> und <code>key.pem</code> Dateien ausgeben, dafĂĽr lassen wir einfach den <code>traefik-certs-dumper</code> Container laufen, binden das <code>/traefik</code> Volume an den Ordner, in dem unsere <code>acme.json</code> gespeichert ist, binden das <code>/output</code> Volume an unseren mailcow <code>data/assets/ssl/</code> Ordner, und setzen die <code>DOMAIN=example.org</code> Variable auf die Domain, von der wir die Zertifikate ausgeben wollen. </p>
|
||||
|
@ -2674,7 +2632,7 @@ docker restart ${postfix_c} ${dovecot_c} ${nginx_c}
|
|||
<small>
|
||||
|
||||
Letztes Update:
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-18 18:04:41</span>
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-19 11:23:29</span>
|
||||
|
||||
|
||||
</small>
|
||||
|
|
Dateidiff unterdrĂĽckt, weil mindestens eine Zeile zu lang ist
194
sitemap.xml
194
sitemap.xml
|
@ -2,7 +2,7 @@
|
|||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/"/>
|
||||
|
@ -10,7 +10,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/backup_restore/b_n_r-accidental_deletion/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/backup_restore/b_n_r-accidental_deletion/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/backup_restore/b_n_r-accidental_deletion/"/>
|
||||
|
@ -18,7 +18,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/backup_restore/b_n_r-backup/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/backup_restore/b_n_r-backup/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/backup_restore/b_n_r-backup/"/>
|
||||
|
@ -26,7 +26,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/backup_restore/b_n_r-backup_restore-maildir/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/backup_restore/b_n_r-backup_restore-maildir/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/backup_restore/b_n_r-backup_restore-maildir/"/>
|
||||
|
@ -34,7 +34,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/backup_restore/b_n_r-backup_restore-mysql/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/backup_restore/b_n_r-backup_restore-mysql/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/backup_restore/b_n_r-backup_restore-mysql/"/>
|
||||
|
@ -42,7 +42,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/backup_restore/b_n_r-coldstandby/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/backup_restore/b_n_r-coldstandby/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/backup_restore/b_n_r-coldstandby/"/>
|
||||
|
@ -50,7 +50,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/backup_restore/b_n_r-restore/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/backup_restore/b_n_r-restore/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/backup_restore/b_n_r-restore/"/>
|
||||
|
@ -58,7 +58,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-android/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-android/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-android/"/>
|
||||
|
@ -66,7 +66,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-apple/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-apple/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-apple/"/>
|
||||
|
@ -74,7 +74,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-emclient/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-emclient/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-emclient/"/>
|
||||
|
@ -82,7 +82,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-kontact/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-kontact/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-kontact/"/>
|
||||
|
@ -90,7 +90,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-manual/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-manual/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-manual/"/>
|
||||
|
@ -98,7 +98,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-outlook/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-outlook/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-outlook/"/>
|
||||
|
@ -106,7 +106,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-thunderbird/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-thunderbird/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-thunderbird/"/>
|
||||
|
@ -114,7 +114,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client-windows/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client-windows/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client-windows/"/>
|
||||
|
@ -122,7 +122,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/client/client/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/client/client/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/client/client/"/>
|
||||
|
@ -130,7 +130,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m/i_u_m_deinstall/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/i_u_m/i_u_m_deinstall/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/i_u_m/i_u_m_deinstall/"/>
|
||||
|
@ -138,7 +138,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m/i_u_m_install/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/i_u_m/i_u_m_install/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/i_u_m/i_u_m_install/"/>
|
||||
|
@ -146,7 +146,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m/i_u_m_migration/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/i_u_m/i_u_m_migration/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/i_u_m/i_u_m_migration/"/>
|
||||
|
@ -154,7 +154,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/i_u_m/i_u_m_update/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/i_u_m/i_u_m_update/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/i_u_m/i_u_m_update/"/>
|
||||
|
@ -162,7 +162,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/u_e-80_to_443/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/u_e-80_to_443/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/u_e-80_to_443/"/>
|
||||
|
@ -170,7 +170,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/u_e-autodiscover_config/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/u_e-autodiscover_config/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/u_e-autodiscover_config/"/>
|
||||
|
@ -178,7 +178,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/u_e-reeanble-weak-protocols/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/u_e-reeanble-weak-protocols/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/u_e-reeanble-weak-protocols/"/>
|
||||
|
@ -186,7 +186,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/u_e-update-hooks/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/u_e-update-hooks/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/u_e-update-hooks/"/>
|
||||
|
@ -194,7 +194,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/u_e-why_unbound/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/u_e-why_unbound/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/u_e-why_unbound/"/>
|
||||
|
@ -202,7 +202,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Docker/u_e-docker-cust_dockerfiles/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Docker/u_e-docker-cust_dockerfiles/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Docker/u_e-docker-cust_dockerfiles/"/>
|
||||
|
@ -210,7 +210,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Docker/u_e-docker-dc_bash_compl/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Docker/u_e-docker-dc_bash_compl/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Docker/u_e-docker-dc_bash_compl/"/>
|
||||
|
@ -218,7 +218,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-any_acl/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-any_acl/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-any_acl/"/>
|
||||
|
@ -226,7 +226,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-catchall_vacation/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-catchall_vacation/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-catchall_vacation/"/>
|
||||
|
@ -234,7 +234,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-expunge/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-expunge/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-expunge/"/>
|
||||
|
@ -242,7 +242,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-extra_conf/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-extra_conf/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-extra_conf/"/>
|
||||
|
@ -250,7 +250,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-fts/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-fts/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-fts/"/>
|
||||
|
@ -258,7 +258,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-idle_interval/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-idle_interval/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-idle_interval/"/>
|
||||
|
@ -266,7 +266,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-mail-crypt/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-mail-crypt/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-mail-crypt/"/>
|
||||
|
@ -274,7 +274,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-more/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-more/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-more/"/>
|
||||
|
@ -282,7 +282,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-public_folder/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-public_folder/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-public_folder/"/>
|
||||
|
@ -290,7 +290,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-static_master/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-static_master/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-static_master/"/>
|
||||
|
@ -298,7 +298,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Dovecot/u_e-dovecot-vmail-volume/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Dovecot/u_e-dovecot-vmail-volume/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Dovecot/u_e-dovecot-vmail-volume/"/>
|
||||
|
@ -306,7 +306,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Nginx/u_e-nginx_custom/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Nginx/u_e-nginx_custom/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Nginx/u_e-nginx_custom/"/>
|
||||
|
@ -314,7 +314,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Nginx/u_e-nginx_webmail-site/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Nginx/u_e-nginx_webmail-site/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Nginx/u_e-nginx_webmail-site/"/>
|
||||
|
@ -322,7 +322,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-attachment_size/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-attachment_size/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-attachment_size/"/>
|
||||
|
@ -330,7 +330,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-custom_transport/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-custom_transport/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-custom_transport/"/>
|
||||
|
@ -338,7 +338,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-disable_sender_verification/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-disable_sender_verification/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-disable_sender_verification/"/>
|
||||
|
@ -346,7 +346,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-extra_cf/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-extra_cf/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-extra_cf/"/>
|
||||
|
@ -354,7 +354,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-pflogsumm/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-pflogsumm/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-pflogsumm/"/>
|
||||
|
@ -362,7 +362,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-postscreen_whitelist/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-postscreen_whitelist/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-postscreen_whitelist/"/>
|
||||
|
@ -370,7 +370,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-relayhost/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-relayhost/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-relayhost/"/>
|
||||
|
@ -378,7 +378,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Postfix/u_e-postfix-trust_networks/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Postfix/u_e-postfix-trust_networks/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Postfix/u_e-postfix-trust_networks/"/>
|
||||
|
@ -386,7 +386,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Redis/u_e-redis/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Redis/u_e-redis/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Redis/u_e-redis/"/>
|
||||
|
@ -394,7 +394,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Rspamd/u_e-rspamd/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Rspamd/u_e-rspamd/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Rspamd/u_e-rspamd/"/>
|
||||
|
@ -402,7 +402,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/SOGo/u_e-sogo/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/SOGo/u_e-sogo/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/SOGo/u_e-sogo/"/>
|
||||
|
@ -410,7 +410,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Unbound/u_e-unbound-fwd/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Unbound/u_e-unbound-fwd/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Unbound/u_e-unbound-fwd/"/>
|
||||
|
@ -418,7 +418,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/Watchdog/u_e-watchdog-thresholds/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/Watchdog/u_e-watchdog-thresholds/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/Watchdog/u_e-watchdog-thresholds/"/>
|
||||
|
@ -426,7 +426,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-bl_wl/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-bl_wl/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-bl_wl/"/>
|
||||
|
@ -434,7 +434,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-config/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-config/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-config/"/>
|
||||
|
@ -442,7 +442,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-css/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-css/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-css/"/>
|
||||
|
@ -450,7 +450,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-fido/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-fido/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-fido/"/>
|
||||
|
@ -458,7 +458,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-pushover/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-pushover/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-pushover/"/>
|
||||
|
@ -466,7 +466,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-spamalias/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-spamalias/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-spamalias/"/>
|
||||
|
@ -474,7 +474,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-spamfilter/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-spamfilter/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-spamfilter/"/>
|
||||
|
@ -482,7 +482,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-tagging/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-tagging/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-tagging/"/>
|
||||
|
@ -490,7 +490,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/manual-guides/mailcow-UI/u_e-mailcow_ui-tfa/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/manual-guides/mailcow-UI/u_e-mailcow_ui-tfa/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/manual-guides/mailcow-UI/u_e-mailcow_ui-tfa/"/>
|
||||
|
@ -498,7 +498,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/models/model-acl/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/models/model-acl/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/models/model-acl/"/>
|
||||
|
@ -506,7 +506,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/models/model-passwd/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/models/model-passwd/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/models/model-passwd/"/>
|
||||
|
@ -514,7 +514,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/models/model-sender_rcv/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/models/model-sender_rcv/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/models/model-sender_rcv/"/>
|
||||
|
@ -522,7 +522,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-disable_ipv6/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-disable_ipv6/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-disable_ipv6/"/>
|
||||
|
@ -530,7 +530,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-dmarc_reporting/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-dmarc_reporting/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-dmarc_reporting/"/>
|
||||
|
@ -538,7 +538,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-ip_bindings/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-ip_bindings/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-ip_bindings/"/>
|
||||
|
@ -546,7 +546,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-local_mta/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-local_mta/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-local_mta/"/>
|
||||
|
@ -554,7 +554,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-logging/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-logging/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-logging/"/>
|
||||
|
@ -562,7 +562,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-rp/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-rp/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-rp/"/>
|
||||
|
@ -570,7 +570,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-rspamd_ui/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-rspamd_ui/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-rspamd_ui/"/>
|
||||
|
@ -578,7 +578,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-snat/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-snat/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-snat/"/>
|
||||
|
@ -586,7 +586,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-ssl/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-ssl/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-ssl/"/>
|
||||
|
@ -594,7 +594,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/post_installation/firststeps-sync_jobs_migration/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/post_installation/firststeps-sync_jobs_migration/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/post_installation/firststeps-sync_jobs_migration/"/>
|
||||
|
@ -602,7 +602,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/prerequisite/prerequisite-dns/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/prerequisite/prerequisite-dns/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/prerequisite/prerequisite-dns/"/>
|
||||
|
@ -610,7 +610,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/prerequisite/prerequisite-system/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/prerequisite/prerequisite-system/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/prerequisite/prerequisite-system/"/>
|
||||
|
@ -618,7 +618,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-borgmatic/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-borgmatic/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-borgmatic/"/>
|
||||
|
@ -626,7 +626,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-exchange_onprem/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-exchange_onprem/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-exchange_onprem/"/>
|
||||
|
@ -634,7 +634,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-gitea/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-gitea/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-gitea/"/>
|
||||
|
@ -642,7 +642,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-gogs/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-gogs/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-gogs/"/>
|
||||
|
@ -650,7 +650,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-mailman3/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-mailman3/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-mailman3/"/>
|
||||
|
@ -658,7 +658,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-mailpiler_integration/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-mailpiler_integration/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-mailpiler_integration/"/>
|
||||
|
@ -666,7 +666,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-nextcloud/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-nextcloud/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-nextcloud/"/>
|
||||
|
@ -674,7 +674,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-portainer/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-portainer/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-portainer/"/>
|
||||
|
@ -682,7 +682,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/third_party/third_party-roundcube/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/third_party/third_party-roundcube/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/third_party/third_party-roundcube/"/>
|
||||
|
@ -690,7 +690,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-admin_login_sogo/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-admin_login_sogo/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-admin_login_sogo/"/>
|
||||
|
@ -698,7 +698,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-attach_service/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-attach_service/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-attach_service/"/>
|
||||
|
@ -706,7 +706,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-common_problems/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-common_problems/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-common_problems/"/>
|
||||
|
@ -714,7 +714,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-logs/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-logs/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-logs/"/>
|
||||
|
@ -722,7 +722,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-mysql_aria/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-mysql_aria/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-mysql_aria/"/>
|
||||
|
@ -730,7 +730,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-mysql_upgrade/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-mysql_upgrade/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-mysql_upgrade/"/>
|
||||
|
@ -738,7 +738,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-reset_pw/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-reset_pw/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-reset_pw/"/>
|
||||
|
@ -746,7 +746,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-reset_tls/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-reset_tls/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-reset_tls/"/>
|
||||
|
@ -754,7 +754,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-rm_volumes/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-rm_volumes/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-rm_volumes/"/>
|
||||
|
@ -762,7 +762,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug-rspamd_memory_leaks/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug-rspamd_memory_leaks/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug-rspamd_memory_leaks/"/>
|
||||
|
@ -770,7 +770,7 @@
|
|||
</url>
|
||||
<url>
|
||||
<loc>https://mailcow.github.io/mailcow-dockerized-docs/troubleshooting/debug/</loc>
|
||||
<lastmod>2022-02-18</lastmod>
|
||||
<lastmod>2022-02-19</lastmod>
|
||||
<changefreq>daily</changefreq>
|
||||
<xhtml:link rel="alternate" hreflang="en" href="https://mailcow.github.io/mailcow-dockerized-docs/en/troubleshooting/debug/"/>
|
||||
<xhtml:link rel="alternate" hreflang="de" href="https://mailcow.github.io/mailcow-dockerized-docs/de/troubleshooting/debug/"/>
|
||||
|
|
BIN
sitemap.xml.gz
BIN
sitemap.xml.gz
Binäre Datei nicht angezeigt.
Laden …
In neuem Issue referenzieren