mailcow/generate_config.sh

108 lines
2.4 KiB
Bash
Raw Normal View History

2016-12-29 16:06:21 +08:00
#!/bin/bash
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): " -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
2017-02-22 05:26:14 +08:00
else
read -p "Timezone: " -ei ${TZ} TZ
fi
2016-12-29 16:06:21 +08:00
cat << EOF > mailcow.conf
2016-12-28 18:36:15 +08:00
# ------------------------------
2016-12-10 03:39:02 +08:00
# mailcow web ui configuration
2016-12-28 18:36:15 +08:00
# ------------------------------
# example.org is _not_ a valid hostname, use a fqdn here.
2016-12-10 03:39:02 +08:00
# Default admin user is "admin"
# Default password is "moohoo"
2016-12-30 04:12:07 +08:00
MAILCOW_HOSTNAME=${MAILCOW_HOSTNAME}
2016-12-28 18:36:15 +08:00
# ------------------------------
# SQL database configuration
2016-12-28 18:36:15 +08:00
# ------------------------------
2016-12-10 03:39:02 +08:00
DBNAME=mailcow
DBUSER=mailcow
2017-01-03 17:33:06 +08:00
2016-12-28 03:28:45 +08:00
# Please use long, random alphanumeric strings (A-Za-z0-9)
2016-12-29 16:06:21 +08:00
DBPASS=$(</dev/urandom tr -dc A-Za-z0-9 | head -c 28)
DBROOT=$(</dev/urandom tr -dc A-Za-z0-9 | head -c 28)
2016-12-28 18:36:15 +08:00
# ------------------------------
2017-02-28 17:00:35 +08:00
# HTTP/S Bindings
2016-12-28 18:36:15 +08:00
# ------------------------------
2017-02-23 23:23:30 +08:00
2017-02-28 17:00:35 +08:00
# You should use HTTPS, but in case of SSL offloaded reverse proxies:
2017-03-06 22:42:45 +08:00
HTTP_PORT=80
2017-02-28 17:00:35 +08:00
HTTP_BIND=0.0.0.0
HTTPS_PORT=443
2017-02-23 23:23:30 +08:00
HTTPS_BIND=0.0.0.0
# ------------------------------
# Other bindings
# ------------------------------
# You should leave that alone
# Format: 11.22.33.44:25 or 0.0.0.0:465 etc.
# Do _not_ use IP:PORT in HTTP(S)_BIND or HTTP(S)_PORT
2017-02-23 23:23:30 +08:00
2017-01-03 17:33:06 +08:00
SMTP_PORT=25
SMTPS_PORT=465
SUBMISSION_PORT=587
IMAP_PORT=143
IMAPS_PORT=993
POP_PORT=110
POPS_PORT=995
SIEVE_PORT=4190
2017-07-11 03:29:03 +08:00
DOVEADM_PORT=127.0.0.1:19991
2017-01-03 17:33:06 +08:00
# Your timezone
2016-12-30 04:12:07 +08:00
TZ=${TZ}
2017-05-27 05:01:34 +08:00
# Fixed project name
COMPOSE_PROJECT_NAME=mailcow-dockerized
# Additional SAN for the certificate
ADDITIONAL_SAN=
2017-06-22 15:06:28 +08:00
# To never run acme-mailcow for Let's Encrypt, set this to y
SKIP_LETS_ENCRYPT=n
# Skip IPv4 check in ACME container
SKIP_IP_CHECK=n
2017-06-27 16:26:48 +08:00
# To never run fail2ban-mailcow
SKIP_FAIL2BAN=n
2017-06-22 15:06:28 +08:00
# To never run clamd-mailcow
SKIP_CLAMD=n
2017-09-20 16:56:49 +08:00
# Enable watchdog to restart unhealthy containers (experimental)
USE_WATCHDOG=n
2016-12-29 16:06:21 +08:00
EOF
2017-06-15 16:20:54 +08:00
2017-06-15 23:39:41 +08:00
mkdir -p data/assets/ssl
2017-06-15 16:20:54 +08:00
# copy but don't overwrite existing certificate
cp -n data/assets/ssl-example/*.pem data/assets/ssl/