Deploying to gh-pages from @ mailcow/mailcow-dockerized-docs@8e16498396 🚀
Dieser Commit ist enthalten in:
Ursprung
3d9a543b83
Commit
24fd7486e1
6 geänderte Dateien mit 194 neuen und 102 gelöschten Zeilen
36
de/third_party/third_party-nextcloud/index.html
gevendort
36
de/third_party/third_party-nextcloud/index.html
gevendort
|
@ -2236,6 +2236,13 @@
|
|||
Nextcloud mit dem Helper-Skript verwalten
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#hintergrund-aufgaben" class="md-nav__link">
|
||||
Hintergrund-Aufgaben
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -2331,6 +2338,13 @@
|
|||
Nextcloud mit dem Helper-Skript verwalten
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#hintergrund-aufgaben" class="md-nav__link">
|
||||
Hintergrund-Aufgaben
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -2377,7 +2391,25 @@
|
|||
<h2 id="nextcloud-mit-dem-helper-skript-verwalten">Nextcloud mit dem Helper-Skript verwalten<a class="headerlink" href="#nextcloud-mit-dem-helper-skript-verwalten" title="Permanent link">¶</a></h2>
|
||||
<p>Nextcloud kann mit dem <a href="https://github.com/mailcow/mailcow-dockerized/raw/master/helper-scripts/nextcloud.sh">helper script</a>, das in mailcow enthalten ist, eingerichtet (Parameter <code>-i</code>) und entfernt (Parameter <code>-p</code>) werden. Um Nextcloud zu installieren, navigieren Sie einfach zu Ihrem mailcow-dockerized Root-Ordner und fĂĽhren Sie das Helper-Skript wie folgt aus:</p>
|
||||
<p><code>./helper-scripts/nextcloud.sh -i</code></p>
|
||||
<p>Für den Fall, dass Sie das Passwort (z.B. für admin) vergessen haben und kein neues anfordern können [über den Passwort-Reset-Link auf dem Login-Bildschirm] (<a href="https://docs.nextcloud.com/server/20/admin_manual/configuration_user/reset_admin_password.html?highlight=reset">https://docs.nextcloud.com/server/20/admin_manual/configuration_user/reset_admin_password.html?highlight=reset</a>), können Sie durch den Aufruf des Helper-Skripts mit <code>-r</code> als Parameter ein neues Passwort setzen. Verwenden Sie diese Option nur, wenn Ihre Nextcloud nicht so konfiguriert ist, dass sie mailcow zur Authentifizierung verwendet, wie im nächsten Abschnitt beschrieben.</p>
|
||||
<p>Für den Fall, dass Sie das Passwort (z.B. für admin) vergessen haben und kein neues anfordern können [über den Passwort-Reset-Link auf dem Login-Bildschirm] (<a href="https://docs.nextcloud.com/server/20/admin_manual/configuration_user/reset_admin_password.html?highlight=reset">https://docs.nextcloud.com/server/20/admin_manual/configuration_user/reset_admin_password.html?highlight=reset</a>), können Sie durch den Aufruf des Helper-Skripts mit <code>-r</code> als Parameter ein neues Passwort setzen. Verwenden Sie diese Option nur, wenn Ihre Nextcloud nicht so konfiguriert ist, dass Sie mailcow zur Authentifizierung verwendet, wie im nächsten Abschnitt beschrieben.</p>
|
||||
<h2 id="hintergrund-aufgaben">Hintergrund-Aufgaben<a class="headerlink" href="#hintergrund-aufgaben" title="Permanent link">¶</a></h2>
|
||||
<p>Zur Verwendung der empfohlenen Einstellung (Cron) zur Verarbeitung der Hintergrund-Aufgaben mĂĽssen in der <code>docker-compose.override.yml</code> folgende Zeilen
|
||||
hinzugefĂĽgt werden:</p>
|
||||
<div class="highlight"><pre><span></span><code>version: '2.1'
|
||||
services:
|
||||
php-fpm-mailcow:
|
||||
labels:
|
||||
ofelia.enabled: "true"
|
||||
ofelia.job-exec.nextcloud-cron.schedule: "@every 5m"
|
||||
ofelia.job-exec.nextcloud-cron.command: "su www-data -s /bin/bash -c \"/usr/local/bin/php -f /web/nextcloud/cron.php\""
|
||||
</code></pre></div>
|
||||
<p>Nachdem diese Zeilen hinzugefĂĽgt wurden muss <code>docker-compose up -d</code> ausgefĂĽhrt werden, um das Docker Image mit den entsprechenden Labels zu versehen. Danach muss
|
||||
zudem der docker scheduler neu gestartet werden, um den neuen Job zu registrieren. Dazu wird <code>docker-compose restart ofelia-mailcow</code> ausgefĂĽhrt. Zur
|
||||
ĂśberprĂĽfung, ob die <code>ofelia</code> Konfiguration korrekt ist geladen wurde, kann mittels <code>docker-compose logs ofelia-mailcow</code> nach einer Zeile mit dem Inhalt
|
||||
<code>New job registered "nextcloud-cron" - ...</code> gesucht werden.</p>
|
||||
<p>Hierdurch wird alle 5 Minuten die Hintergrundverarbeitung gestartet. Da die AusfĂĽhrung selbst keine Ausgabe liefert, kann die korrekte Funktionsweise in den
|
||||
Grundeinstellungen von Nextcloud ĂĽberprĂĽft werden. Hier wird automatisch mit der ersten AusfĂĽhrung die Hintergrund-Aufgaben Verarbeitung auf <code>(X) Cron</code> gesetzt
|
||||
und der Zeitstempel <code>Letzte Aufgabe ausgefĂĽhrt</code> aktualisiert.</p>
|
||||
<h2 id="konfigurieren-sie-nextcloud-um-mailcow-fur-die-authentifizierung-zu-verwenden">Konfigurieren Sie Nextcloud, um mailcow fĂĽr die Authentifizierung zu verwenden<a class="headerlink" href="#konfigurieren-sie-nextcloud-um-mailcow-fur-die-authentifizierung-zu-verwenden" title="Permanent link">¶</a></h2>
|
||||
<p>Im Folgenden wird beschrieben, wie die Authentifizierung über mailcow unter Verwendung des OAuth2-Protokolls eingerichtet wird. Wir nehmen nur an, dass Sie Nextcloud bereits unter <em>cloud.example.com</em> eingerichtet haben und dass Ihre mailcow unter <em>mail.example.com</em> läuft. Es spielt keine Rolle, wenn Ihre Nextcloud auf einem anderen Server läuft, Sie können immer noch mailcow für die Authentifizierung verwenden.</p>
|
||||
<p>1. Melden Sie sich bei mailcow als Administrator an.</p>
|
||||
|
@ -2455,7 +2487,7 @@ Es wird angezeigt, welche Befehle ausgefĂĽhrt werden mĂĽssen, diese mĂĽssen im p
|
|||
<small>
|
||||
|
||||
Letztes Update:
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-04 12:16:32</span>
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-18 18:03:43</span>
|
||||
|
||||
|
||||
</small>
|
||||
|
|
32
en/third_party/third_party-nextcloud/index.html
gevendort
32
en/third_party/third_party-nextcloud/index.html
gevendort
|
@ -2236,6 +2236,13 @@
|
|||
Manage Nextcloud using the helper script
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#background-jobs" class="md-nav__link">
|
||||
Background jobs
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -2331,6 +2338,13 @@
|
|||
Manage Nextcloud using the helper script
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#background-jobs" class="md-nav__link">
|
||||
Background jobs
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -2378,6 +2392,22 @@
|
|||
<p>Nextcloud can be set up (parameter <code>-i</code>) and removed (parameter <code>-p</code>) with the <a href="https://github.com/mailcow/mailcow-dockerized/raw/master/helper-scripts/nextcloud.sh">helper script</a> included with mailcow. In order to install Nextcloud simply navigate to your mailcow-dockerized root folder and run the helper script as follows:</p>
|
||||
<p><code>./helper-scripts/nextcloud.sh -i</code></p>
|
||||
<p>In case you have forgotten the password (e.g. for admin) and can't request a new one <a href="https://docs.nextcloud.com/server/20/admin_manual/configuration_user/reset_admin_password.html?highlight=reset">via the password reset link on the login screen</a> calling the helper script with <code>-r</code> as parameter allows you to set a new password. Only use this option if your Nextcloud isn't configured to use mailcow for authentication as described in the next section.</p>
|
||||
<h2 id="background-jobs">Background jobs<a class="headerlink" href="#background-jobs" title="Permanent link">¶</a></h2>
|
||||
<p>To use the recommended setting (cron) to execute the background jobs following lines need to be added to the <code>docker-compose.override.yml</code>:</p>
|
||||
<div class="highlight"><pre><span></span><code>version: '2.1'
|
||||
services:
|
||||
php-fpm-mailcow:
|
||||
labels:
|
||||
ofelia.enabled: "true"
|
||||
ofelia.job-exec.nextcloud-cron.schedule: "@every 5m"
|
||||
ofelia.job-exec.nextcloud-cron.command: "su www-data -s /bin/bash -c \"/usr/local/bin/php -f /web/nextcloud/cron.php\""
|
||||
</code></pre></div>
|
||||
<p>After adding these lines the <code>docker-compose up -d</code> command must be executed to update the docker image and also the docker scheduler image must be restarted to
|
||||
pick up the new job definition by executing <code>docker-compose restart ofelia-mailcow</code>. To check if the job was successfully picked up by <code>ofelia</code> the command
|
||||
<code>docker-compose logs ofelia-mailcow</code> will contain a line similar to <code>New job registered "nextcloud-cron" - ...</code>.</p>
|
||||
<p>By adding these lines the background jobs will be executed every 5 minutes. To verify that the execution works correctly, the only way is to see it in the basic
|
||||
settings when logged in as an admin in Nextcloud. If everything is correct the first scheduled execution will change the background jobs processing setting to
|
||||
<code>(X) Cron</code> and the timestamp after <code>Last job ran</code> will be updated every 5 minutes.</p>
|
||||
<h2 id="configure-nextcloud-to-use-mailcow-for-authentication">Configure Nextcloud to use mailcow for authentication<a class="headerlink" href="#configure-nextcloud-to-use-mailcow-for-authentication" title="Permanent link">¶</a></h2>
|
||||
<p>The following describes how set up authentication via mailcow using the OAuth2 protocol. We will only assume that you have already set up Nextcloud at <em>cloud.example.com</em> and that your mailcow is running at <em>mail.example.com</em>. It does not matter if your Nextcloud is running on a different server, you can still use mailcow for authentication.</p>
|
||||
<p>1. Log into mailcow as administrator.</p>
|
||||
|
@ -2455,7 +2485,7 @@ It shows which commands have to be executed, these have to be placed in the php-
|
|||
<small>
|
||||
|
||||
Last update:
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-04 12:16:32</span>
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-18 18:03:43</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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-17</lastmod>
|
||||
<lastmod>2022-02-18</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.
32
third_party/third_party-nextcloud/index.html
gevendort
32
third_party/third_party-nextcloud/index.html
gevendort
|
@ -2236,6 +2236,13 @@
|
|||
Manage Nextcloud using the helper script
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#background-jobs" class="md-nav__link">
|
||||
Background jobs
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -2331,6 +2338,13 @@
|
|||
Manage Nextcloud using the helper script
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
<a href="#background-jobs" class="md-nav__link">
|
||||
Background jobs
|
||||
</a>
|
||||
|
||||
</li>
|
||||
|
||||
<li class="md-nav__item">
|
||||
|
@ -2378,6 +2392,22 @@
|
|||
<p>Nextcloud can be set up (parameter <code>-i</code>) and removed (parameter <code>-p</code>) with the <a href="https://github.com/mailcow/mailcow-dockerized/raw/master/helper-scripts/nextcloud.sh">helper script</a> included with mailcow. In order to install Nextcloud simply navigate to your mailcow-dockerized root folder and run the helper script as follows:</p>
|
||||
<p><code>./helper-scripts/nextcloud.sh -i</code></p>
|
||||
<p>In case you have forgotten the password (e.g. for admin) and can't request a new one <a href="https://docs.nextcloud.com/server/20/admin_manual/configuration_user/reset_admin_password.html?highlight=reset">via the password reset link on the login screen</a> calling the helper script with <code>-r</code> as parameter allows you to set a new password. Only use this option if your Nextcloud isn't configured to use mailcow for authentication as described in the next section.</p>
|
||||
<h2 id="background-jobs">Background jobs<a class="headerlink" href="#background-jobs" title="Permanent link">¶</a></h2>
|
||||
<p>To use the recommended setting (cron) to execute the background jobs following lines need to be added to the <code>docker-compose.override.yml</code>:</p>
|
||||
<div class="highlight"><pre><span></span><code>version: '2.1'
|
||||
services:
|
||||
php-fpm-mailcow:
|
||||
labels:
|
||||
ofelia.enabled: "true"
|
||||
ofelia.job-exec.nextcloud-cron.schedule: "@every 5m"
|
||||
ofelia.job-exec.nextcloud-cron.command: "su www-data -s /bin/bash -c \"/usr/local/bin/php -f /web/nextcloud/cron.php\""
|
||||
</code></pre></div>
|
||||
<p>After adding these lines the <code>docker-compose up -d</code> command must be executed to update the docker image and also the docker scheduler image must be restarted to
|
||||
pick up the new job definition by executing <code>docker-compose restart ofelia-mailcow</code>. To check if the job was successfully picked up by <code>ofelia</code> the command
|
||||
<code>docker-compose logs ofelia-mailcow</code> will contain a line similar to <code>New job registered "nextcloud-cron" - ...</code>.</p>
|
||||
<p>By adding these lines the background jobs will be executed every 5 minutes. To verify that the execution works correctly, the only way is to see it in the basic
|
||||
settings when logged in as an admin in Nextcloud. If everything is correct the first scheduled execution will change the background jobs processing setting to
|
||||
<code>(X) Cron</code> and the timestamp after <code>Last job ran</code> will be updated every 5 minutes.</p>
|
||||
<h2 id="configure-nextcloud-to-use-mailcow-for-authentication">Configure Nextcloud to use mailcow for authentication<a class="headerlink" href="#configure-nextcloud-to-use-mailcow-for-authentication" title="Permanent link">¶</a></h2>
|
||||
<p>The following describes how set up authentication via mailcow using the OAuth2 protocol. We will only assume that you have already set up Nextcloud at <em>cloud.example.com</em> and that your mailcow is running at <em>mail.example.com</em>. It does not matter if your Nextcloud is running on a different server, you can still use mailcow for authentication.</p>
|
||||
<p>1. Log into mailcow as administrator.</p>
|
||||
|
@ -2455,7 +2485,7 @@ It shows which commands have to be executed, these have to be placed in the php-
|
|||
<small>
|
||||
|
||||
Last update:
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-04 12:16:32</span>
|
||||
<span class="git-revision-date-localized-plugin git-revision-date-localized-plugin-iso_datetime">2022-02-18 18:03:43</span>
|
||||
|
||||
|
||||
</small>
|
||||
|
|
Laden …
In neuem Issue referenzieren