2016-12-10 03:39:02 +08:00
|
|
|
# mailcow web ui configuration
|
|
|
|
# example.org is NOT a valid hostname, use a fqdn here.
|
|
|
|
# Default admin user is "admin"
|
|
|
|
# Default password is "moohoo"
|
|
|
|
|
2016-12-12 01:58:29 +08:00
|
|
|
MAILCOW_HOSTNAME=logs.servercow.de
|
2016-12-10 03:39:02 +08:00
|
|
|
|
2016-12-11 04:49:41 +08:00
|
|
|
# SQL database configuration
|
2016-12-10 03:39:02 +08:00
|
|
|
DBNAME=mailcow
|
|
|
|
DBUSER=mailcow
|
|
|
|
DBPASS=mysafepasswd
|
|
|
|
DBROOT=myverysafepasswd
|
2016-12-11 04:49:41 +08:00
|
|
|
|
2016-12-11 21:13:17 +08:00
|
|
|
# MariaDB
|
|
|
|
DBVERS=latest
|
2016-12-10 03:39:02 +08:00
|
|
|
|
|
|
|
# SOGo configuration
|
|
|
|
SOGOCHILDS=20
|
|
|
|
|
|
|
|
# Webserver configuration
|
2016-12-10 04:10:11 +08:00
|
|
|
# Default port binding for Nginx is 443
|
2016-12-11 04:49:41 +08:00
|
|
|
#
|
2016-12-10 03:39:02 +08:00
|
|
|
PHPVERS="5.6-fpm"
|
|
|
|
NGINXVERS="stable"
|
|
|
|
|
|
|
|
# You should leave that alone
|
2016-12-11 04:49:41 +08:00
|
|
|
# Can also be 11.22.33.44:25 or 0.0.0.0:465 etc. for specific binding
|
2016-12-12 01:58:29 +08:00
|
|
|
SMTP_PORT=26
|
2016-12-10 03:39:02 +08:00
|
|
|
SMTPS_PORT=465
|
|
|
|
SUBMISSION_PORT=587
|
|
|
|
IMAP_PORT=143
|
|
|
|
IMAPS_PORT=993
|
|
|
|
POP_PORT=110
|
|
|
|
POPS_PORT=995
|
|
|
|
SIEVE_PORT=4190
|
|
|
|
|
|
|
|
# Redis
|
|
|
|
REDISVERS="latest"
|
|
|
|
|
|
|
|
# Networking
|
|
|
|
# You need to rebuild all containers after changing values.
|
|
|
|
# Remove old networks manually.
|
|
|
|
DOCKER_NETWORK="mailcow-network"
|
2016-12-11 21:13:17 +08:00
|
|
|
DOCKER_SUBNET="172.18.0.0/16"
|
2016-12-10 03:39:02 +08:00
|
|
|
|