Advertisement
Guest User

Untitled

a guest
Jun 10th, 2018
173
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. ------------------------------
  2. # mailcow web ui configuration
  3. # ------------------------------
  4. # example.org is _not_ a valid hostname, use a fqdn here.
  5. # Default admin user is "admin"
  6. # Default password is "moohoo"
  7. MAILCOW_HOSTNAME=mail.aurix.co.za
  8.  
  9. # ------------------------------
  10. # SQL database configuration
  11. # ------------------------------
  12. DBNAME=mailcow
  13. DBUSER=mailcow
  14.  
  15. # Please use long, random alphanumeric strings (A-Za-z0-9)
  16. DBPASS=fv1vJaG5XoWIcwNEz4kO0eydsJdu
  17. DBROOT=QTKTpMWbdZXPA9QNzqERTmwQkfhm
  18. # ------------------------------
  19.  
  20. # You should use HTTPS, but in case of SSL offloaded reverse proxies:
  21. HTTP_PORT=8080
  22. HTTP_BIND=127.0.0.1
  23.  
  24. HTTPS_PORT=8443
  25. HTTPS_BIND=127.0.0.1
  26.  
  27. # ------------------------------
  28. # Other bindings
  29. # ------------------------------
  30. # You should leave that alone
  31. # Format: 11.22.33.44:25 or 0.0.0.0:465 etc.
  32. # Do _not_ use IP:PORT in HTTP(S)_BIND or HTTP(S)_PORT
  33.  
  34. SMTP_PORT=25
  35. SMTPS_PORT=465
  36. SUBMISSION_PORT=587
  37. IMAP_PORT=143
  38. IMAPS_PORT=993
  39. POP_PORT=110
  40. POPS_PORT=995
  41. SIEVE_PORT=4190
  42. DOVEADM_PORT=127.0.0.1:19991
  43. SQL_PORT=127.0.0.1:13306
  44.  
  45. # Your timezone
  46. TZ=Africa/Harare
  47.  
  48. # Fixed project name
  49. COMPOSE_PROJECT_NAME=mailcowdockerized
  50.  
  51. # Additional SAN for the certificate
  52. ADDITIONAL_SAN=
  53.  
  54.  
  55. # Skip running ACME (acme-mailcow, Let's Encrypt certs) - y/n
  56. SKIP_LETS_ENCRYPT=n
  57. # Skip IPv4 check in ACME container - y/n
  58. SKIP_IP_CHECK=n
  59.  
  60. # Skip ClamAV (clamd-mailcow) anti-virus (Rspamd will auto-detect a missing Cla$
  61. SKIP_CLAMD=n
  62.  
  63. # Enable watchdog (watchdog-mailcow) to restart unhealthy containers (experimen$
  64. USE_WATCHDOG=n
  65. # Send notifications by mail (no DKIM signature, sent from watchdog@MAILCOW_HOS$
  66. #WATCHDOG_NOTIFY_EMAIL=
  67.  
  68. # Max log lines per service to keep in Redis logs
  69. LOG_LINES=9999
  70.  
  71. # Internal IPv4 /24 subnet, format n.n.n. (expands to n.n.n.0/24)
  72. IPV4_NETWORK=172.22.1
  73.  
  74. # Internal IPv6 subnet in fc00::/7
  75. IPV6_NETWORK=fd4d:6169:6c63:6f77::/64
  76. Use this IP for outgoing connections (SNAT)
  77. #SNAT_TO_SOURCE=
  78.  
  79. # Disable IPv6
  80. # mailcow-network will still be created as IPv6 enabled, all containers will be$
  81. # without IPv6 support.
  82. # Use 1 for disabled, 0 for enabled
  83. SYSCTL_IPV6_DISABLED=0
  84.  
  85. # Create or override API key for web uI
  86. # You _must_ define API_ALLOW_FROM, which is a comma separated list of IPs
  87. #API_KEY=
  88. #API_ALLOW_FROM=127.0.0.1,1.2.3.4
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement