diff --git a/assets/images/checkmk/long_check_output.png b/assets/images/checkmk/long_check_output.png new file mode 100644 index 000000000..e30563d63 Binary files /dev/null and b/assets/images/checkmk/long_check_output.png differ diff --git a/assets/images/checkmk/no_updates_available.png b/assets/images/checkmk/no_updates_available.png new file mode 100644 index 000000000..b32aa619b Binary files /dev/null and b/assets/images/checkmk/no_updates_available.png differ diff --git a/assets/images/checkmk/updates_available.png b/assets/images/checkmk/updates_available.png new file mode 100644 index 000000000..d948cd1d7 Binary files /dev/null and b/assets/images/checkmk/updates_available.png differ diff --git a/de/assets/images/checkmk/long_check_output.png b/de/assets/images/checkmk/long_check_output.png new file mode 100644 index 000000000..e30563d63 Binary files /dev/null and b/de/assets/images/checkmk/long_check_output.png differ diff --git a/de/assets/images/checkmk/no_updates_available.png b/de/assets/images/checkmk/no_updates_available.png new file mode 100644 index 000000000..b32aa619b Binary files /dev/null and b/de/assets/images/checkmk/no_updates_available.png differ diff --git a/de/assets/images/checkmk/updates_available.png b/de/assets/images/checkmk/updates_available.png new file mode 100644 index 000000000..d948cd1d7 Binary files /dev/null and b/de/assets/images/checkmk/updates_available.png differ diff --git a/de/manual-guides/checkmk/u_e-checkmk/index.html b/de/manual-guides/checkmk/u_e-checkmk/index.html new file mode 100644 index 000000000..dcaed09ed --- /dev/null +++ b/de/manual-guides/checkmk/u_e-checkmk/index.html @@ -0,0 +1,2525 @@ + + + + + + + + + + + + + + + + + + U e checkmk - mailcow: dockerized documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + Zum Inhalt + + +
+
+ +
+ + + + +
+ + +
+ +
+ + + + + + +
+
+ + + +
+
+
+ + + + +
+
+
+ + + +
+
+
+ + + +
+
+
+ + +
+
+ + + + + + + + +

U e checkmk

+ +

Mailcow bietet mittels dem eigenen Update-Script die Möglichkeit zu prüfen ob Updates vorhanden sind.

+

Sofern mailcow-Updates mittels checkmk abgefragt werden soll, kann man im local-Verzeichnis des checkmk-Agents (normalerweise /usr/lib/check_mk_agent/local/) eine ausführbare Datei mit dem Namen mailcow_update und nachfolgendem Inhalt erstellen:

+
#!/bin/bash
+cd /opt/mailcow-dockerized/ && ./update.sh -c >/dev/null
+status=$?
+if [ $status -eq 3 ]; then
+  echo "0 \"mailcow_update\" mailcow_update=0;1;;0;1 No updates available."
+elif [ $status -eq 0 ]; then
+  echo "1 \"mailcow_update\" mailcow_update=1;1;;0;1 Updated code is available.\nThe changes can be found here: https://github.com/mailcow/mailcow-dockerized/commits/master"
+else
+  echo "3 \"mailcow_update\" - Unknown output from update script ..."
+fi
+exit
+
+

Sofern das mailcow-Installationsverzeichnis nicht /opt/ ist, ist das in der 2. Zeile anzupassen.

+

Danach für euren mailcow-Host in checmk die Services neu inventarisieren und es sollte ein neuer Check mit Namen mailcow_update auswählbar sein.

+

Screenshots

+

Keine Updates verfügbar

+

Sofern keine Updates vorhanden sind, wird OK ausgegeben.

+

No update available

+

Neue Updates verfügbar

+

Sofern Updates vorhanden sind, wird WARN ausgegeben.

+

Updates available

+

Sollte stattdessen CRIT gewünscht sein, ist die 7. Zeile durch folgendes zu ersetzen:

+
  echo "1 \"mailcow_update\" mailcow_update=1;1;;0;1 Updated code is available.\nThe changes can be found here: https://github.com/mailcow/mailcow-dockerized/commits/master"
+
+

Detailierter Check-Output

+

Long check output

+
    +
  • Hier wird ein Link zu den GitHub Commits von mailcow ausgegeben, sofern Updates verfügbar sind.
  • +
  • Metriken werden ebenfalls ausgegeben (nicht nur bei vorhandenen Updates):
  • +
  • 0 = Keine Updates verfügbar
  • +
  • 1 = Neue Updates verfügbar
  • +
+ +
+
+ + + Letztes Update: + 2022-07-17 15:20:38 + + + +
+ + +
+ +
+
+ + + +
+ + + +
+
+
+
+ + + + + + + + + + \ No newline at end of file diff --git a/de/prerequisite/prerequisite-system/index.html b/de/prerequisite/prerequisite-system/index.html index 6077a1ce1..49b120a22 100644 --- a/de/prerequisite/prerequisite-system/index.html +++ b/de/prerequisite/prerequisite-system/index.html @@ -2650,74 +2650,74 @@ Verwenden Sie stattdessen die FORWARD-Kette.

Dienst -Protokoll -Port -Container +Protokoll +Port +Container Variable Postfix SMTP -TCP -25 -postfix-mailcow +TCP +25 +postfix-mailcow ${SMTP_PORT} Postfix SMTPS -TCP -465 -postfix-mailcow +TCP +465 +postfix-mailcow ${SMTPS_PORT} Postfix Submission -TCP -587 -postfix-mailcow +TCP +587 +postfix-mailcow ${SUBMISSION_PORT} Dovecot IMAP -TCP -143 -dovecot-mailcow +TCP +143 +dovecot-mailcow ${IMAP_PORT} Dovecot IMAPS -TCP -993 -dovecot-mailcow +TCP +993 +dovecot-mailcow ${IMAPS_PORT} Dovecot POP3 -TCP -110 -dovecot-mailcow +TCP +110 +dovecot-mailcow ${POP_PORT} Dovecot POP3S -TCP -995 -dovecot-mailcow +TCP +995 +dovecot-mailcow ${POPS_PORT} Dovecot ManageSieve -TCP -4190 -dovecot-mailcow +TCP +4190 +dovecot-mailcow ${SIEVE_PORT} HTTP(S) -TCP -80/443 -nginx-mailcow +TCP +80/443 +nginx-mailcow ${HTTP_PORT} / ${HTTPS_PORT} diff --git a/de/troubleshooting/debug-reset_pw/index.html b/de/troubleshooting/debug-reset_pw/index.html index 75dc6e14b..ab7dc231c 100644 --- a/de/troubleshooting/debug-reset_pw/index.html +++ b/de/troubleshooting/debug-reset_pw/index.html @@ -874,29 +874,29 @@
  • - 1. Datenbank-Name finden + 146 Datenbank-Name finden
  • - 2. Einen oder mehrere Benutzer zurücksetzen + 246 Einen oder mehrere Benutzer zurücksetzen -