1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-25 02:29:32 +02:00

Must remove " from hostname

This commit is contained in:
andryyy 2016-12-29 21:12:07 +01:00
parent 241a8517ec
commit 9abb5f5e4c

View File

@ -22,7 +22,7 @@ cat << EOF > mailcow.conf
# example.org is _not_ a valid hostname, use a fqdn here.
# Default admin user is "admin"
# Default password is "moohoo"
MAILCOW_HOSTNAME="${MAILCOW_HOSTNAME}"
MAILCOW_HOSTNAME=${MAILCOW_HOSTNAME}
# ------------------------------
# SQL database configuration
@ -49,5 +49,5 @@ POPS_PORT=995
SIEVE_PORT=4190
# Your timezone
TZ="${TZ}"
TZ=${TZ}
EOF