Advertisement
Guest User

Untitled

a guest
Jul 14th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 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.valium.pl
  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=OjJo7qa1oHfSEiRoRjkO3DlIdI5h
  17. DBROOT=tWoCGUoN1Yh2XG7Ih0NJEpLBShPp
  18.  
  19. # ------------------------------
  20. # HTTP/S Bindings
  21. # ------------------------------
  22.  
  23. # You should use HTTPS, but in case of SSL offloaded reverse proxies:
  24. HTTP_PORT=800
  25. HTTP_BIND=0.0.0.0
  26.  
  27. HTTPS_PORT=4430
  28. HTTPS_BIND=0.0.0.0
  29.  
  30. # ------------------------------
  31. # Other bindings
  32. # ------------------------------
  33. # You should leave that alone
  34. # Format: 11.22.33.44:25 or 0.0.0.0:465 etc.
  35. # Do _not_ use IP:PORT in HTTP(S)_BIND or HTTP(S)_PORT
  36.  
  37. SMTP_PORT=25
  38. SMTPS_PORT=465
  39. SUBMISSION_PORT=587
  40. IMAP_PORT=143
  41. IMAPS_PORT=993
  42. POP_PORT=110
  43. POPS_PORT=995
  44. SIEVE_PORT=4190
  45. DOVEADM_PORT=127.0.0.1:19991
  46. SQL_PORT=127.0.0.1:13306
  47.  
  48. # Your timezone
  49. TZ=Europe/Berlin
  50.  
  51. # Fixed project name
  52. COMPOSE_PROJECT_NAME=mailcowdockerized
  53.  
  54. # Additional SAN for the certificate
  55. ADDITIONAL_SAN=
  56.  
  57.  
  58. # Skip running ACME (acme-mailcow, Let's Encrypt certs) - y/n
  59. SKIP_LETS_ENCRYPT=n
  60.  
  61. # Skip IPv4 check in ACME container - y/n
  62. SKIP_IP_CHECK=n
  63.  
  64. # Skip ClamAV (clamd-mailcow) anti-virus (Rspamd will auto-detect a missing ClamAV container) - y/n
  65. SKIP_CLAMD=n
  66.  
  67. # Enable watchdog (watchdog-mailcow) to restart unhealthy containers (experimental)
  68. USE_WATCHDOG=n
  69. # Send notifications by mail (no DKIM signature, sent from watchdog@MAILCOW_HOSTNAME)
  70. #WATCHDOG_NOTIFY_EMAIL=
  71.  
  72. # Max log lines per service to keep in Redis logs
  73. LOG_LINES=9999
  74.  
  75. # Internal IPv4 /24 subnet, format n.n.n. (expands to n.n.n.0/24)
  76. IPV4_NETWORK=172.22.1
  77.  
  78. # Internal IPv6 subnet in fc00::/7
  79. IPV6_NETWORK=fd4d:6169:6c63:6f77::/64
  80.  
  81. # Use this IP for outgoing connections (SNAT)' >> mailcow.conf
  82. #SNAT_TO_SOURCE=" >> mailcow.conf
  83.  
  84. # Disable IPv6
  85. # mailcow-network will still be created as IPv6 enabled, all containers will be created
  86. # without IPv6 support.
  87. # Use 1 for disabled, 0 for enabled
  88. SYSCTL_IPV6_DISABLED=0
  89.  
  90. # Use this IPv6 for outgoing connections (SNAT)
  91. #SNAT6_TO_SOURCE=
  92. # Create or override API key for web UI
  93. #API_KEY=
  94. # Must be set for API_KEY to be active
  95. #API_ALLOW_FROM=
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement