1
0
mirror of https://github.com/mailcow/mailcow-dockerized.git synced 2024-12-10 10:40:15 +02:00
mailcow-dockerized/mailcow.conf

27 lines
590 B
Plaintext
Raw Normal View History

2016-12-09 21:39:02 +02: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 10:26:27 +02:00
MAILCOW_HOSTNAME=mail.example.org
2016-12-09 21:39:02 +02:00
# SQL database configuration
2016-12-09 21:39:02 +02:00
DBNAME=mailcow
DBUSER=mailcow
2016-12-27 21:28:45 +02:00
# Please use long, random alphanumeric strings (A-Za-z0-9)
2016-12-09 21:39:02 +02:00
DBPASS=mysafepasswd
2016-12-12 10:26:27 +02:00
DBROOT=myothersafepasswd
2016-12-09 21:39:02 +02:00
# You should leave that alone
# Can also be 11.22.33.44:25 or 0.0.0.0:465 etc. for specific binding
2016-12-12 10:26:27 +02:00
SMTP_PORT=25
2016-12-09 21:39:02 +02:00
SMTPS_PORT=465
SUBMISSION_PORT=587
IMAP_PORT=143
IMAPS_PORT=993
POP_PORT=110
POPS_PORT=995
SIEVE_PORT=4190
2016-12-18 14:43:19 +02:00
TZ="Europe/Berlin"