31 lines
681 B
Plaintext
31 lines
681 B
Plaintext
# 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=mail.example.org
|
|
|
|
# SQL database configuration
|
|
DBNAME=mailcow
|
|
DBUSER=mailcow
|
|
DBPASS=mysafepasswd
|
|
DBROOT=myothersafepasswd
|
|
|
|
# You should leave that alone
|
|
# Can also be 11.22.33.44:25 or 0.0.0.0:465 etc. for specific binding
|
|
SMTP_PORT=25
|
|
SMTPS_PORT=465
|
|
SUBMISSION_PORT=587
|
|
IMAP_PORT=143
|
|
IMAPS_PORT=993
|
|
POP_PORT=110
|
|
POPS_PORT=995
|
|
SIEVE_PORT=4190
|
|
|
|
# Networking
|
|
# You need to rebuild all containers after changing values.
|
|
# Remove old networks manually.
|
|
DOCKER_NETWORK="mailcow-network"
|
|
DOCKER_SUBNET="172.18.0.0/16"
|
|
|