From aa245cbda52bc0d712e35b8b256f92ede96a1ac3 Mon Sep 17 00:00:00 2001 From: andryyy Date: Sun, 8 Oct 2017 22:48:56 +0200 Subject: [PATCH] [Config] Add WATCHDOG_NOTIFY_EMAIL to gen_config, slightly better parameter descriptions --- generate_config.sh | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/generate_config.sh b/generate_config.sh index a7e52ebe..ecf5723a 100755 --- a/generate_config.sh +++ b/generate_config.sh @@ -16,10 +16,10 @@ if [ -z "$MAILCOW_HOSTNAME" ]; then read -p "Hostname (FQDN): " -ei "mx.example.org" MAILCOW_HOSTNAME fi -if [[ -a /etc/timezone ]]; then - TZ=$(cat /etc/timezone) +if [[ -a /etc/timezone ]]; then + TZ=$(cat /etc/timezone) elif [[ -a /etc/localtime ]]; then - TZ=$(readlink /etc/localtime|sed -n 's|^.*zoneinfo/||p') + TZ=$(readlink /etc/localtime|sed -n 's|^.*zoneinfo/||p') fi if [ -z "$TZ" ]; then @@ -84,20 +84,22 @@ COMPOSE_PROJECT_NAME=mailcow-dockerized # Additional SAN for the certificate ADDITIONAL_SAN= -# To never run acme-mailcow for Let's Encrypt, set this to y -SKIP_LETS_ENCRYPT=n -# Skip IPv4 check in ACME container +# Skip running ACME (acme-mailcow, Let's Encrypt certs) - y/n +SKIP_LETS_ENCRYPT=n +# Skip IPv4 check in ACME container - y/n SKIP_IP_CHECK=n -# To never run fail2ban-mailcow +# Skip Fail2ban implementation (fail2ban-mailcow) - y/n SKIP_FAIL2BAN=n -# To never run clamd-mailcow +# Skip ClamAV (clamd-mailcow) anti-virus (Rspamd will auto-detect a missing ClamAV container) - y/n SKIP_CLAMD=n -# Enable watchdog to restart unhealthy containers (experimental) +# Enable watchdog (watchdog-mailcow) to restart unhealthy containers (experimental) USE_WATCHDOG=n +# Send notifications by mail (no DKIM signature, sent from watchdog@MAILCOW_HOSTNAME) +#WATCHDOG_NOTIFY_EMAIL= EOF