#!/bin/bash set -o pipefail if grep --help 2>&1 | grep -q -i "busybox"; then echo "BusybBox grep detected, please install gnu grep, \"apk add --no-cache --upgrade grep\"" exit 1 fi if cp --help 2>&1 | grep -q -i "busybox"; then echo "BusybBox cp detected, please install coreutils, \"apk add --no-cache --upgrade coreutils\"" exit 1 fi if [[ -f mailcow.conf ]]; then read -r -p "A config file exists and will be overwritten, are you sure you want to contine? [y/N] " response case $response in [yY][eE][sS]|[yY]) mv mailcow.conf mailcow.conf_backup ;; *) exit 1 ;; esac fi if [ -z "$MAILCOW_HOSTNAME" ]; then read -p "Hostname (FQDN - example.org is not a valid FQDN): " -ei "mx.example.org" MAILCOW_HOSTNAME fi if [[ -a /etc/timezone ]]; then TZ=$(cat /etc/timezone) elif [[ -a /etc/localtime ]]; then TZ=$(readlink /etc/localtime|sed -n 's|^.*zoneinfo/||p') fi if [ -z "$TZ" ]; then read -p "Timezone: " -ei "Europe/Berlin" TZ else read -p "Timezone: " -ei ${TZ} TZ fi [[ ! -f ./data/conf/rspamd/override.d/worker-controller-password.inc ]] && echo '# Placeholder' > ./data/conf/rspamd/override.d/worker-controller-password.inc cat << EOF > mailcow.conf # ------------------------------ # mailcow web ui configuration # ------------------------------ # example.org is _not_ a valid hostname, use a fqdn here. # Default admin user is "admin" # Default password is "moohoo" MAILCOW_HOSTNAME=${MAILCOW_HOSTNAME} # ------------------------------ # SQL database configuration # ------------------------------ DBNAME=mailcow DBUSER=mailcow # Please use long, random alphanumeric strings (A-Za-z0-9) DBPASS=$(> mailcow.conf #SNAT_TO_SOURCE=" >> mailcow.conf # Disable IPv6 # mailcow-network will still be created as IPv6 enabled, all containers will be created # without IPv6 support. # Use 1 for disabled, 0 for enabled SYSCTL_IPV6_DISABLED=0 EOF mkdir -p data/assets/ssl # copy but don't overwrite existing certificate cp -n data/assets/ssl-example/*.pem data/assets/ssl/