Advertisement
Guest User

Untitled

a guest
Oct 15th, 2018
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.56 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=mailserver.$MEINE_DOMAIN.de
  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=***
  17. DBROOT=***
  18.  
  19. # ------------------------------
  20. # HTTP/S Bindings
  21. # ------------------------------
  22.  
  23. # You should use HTTPS, but in case of SSL offloaded reverse proxies:
  24. HTTP_PORT=8080
  25. HTTP_BIND=127.0.0.1
  26.  
  27. HTTPS_PORT=8443
  28. HTTPS_BIND=127.0.0.1
  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. # Fixed project name
  51. COMPOSE_PROJECT_NAME=mailcowdockerized
  52.  
  53. # Garbage collector cleanup
  54. # Deleted domains and mailboxes are moved to /var/vmail/_garbage/timestamp_sanitizedstring
  55. # How long should objects remain in the garbage until they are being deleted? (value in minutes)
  56. # Check interval is hourly
  57. MAILDIR_GC_TIME=1440
  58.  
  59. # Additional SAN for the certificate
  60. ADDITIONAL_SAN=***
  61.  
  62. # Skip running ACME (acme-mailcow, Let's Encrypt certs) - y/n
  63. SKIP_LETS_ENCRYPT=n
  64.  
  65. # Skip IPv4 check in ACME container - y/n
  66. SKIP_IP_CHECK=n
  67.  
  68. # Skip ClamAV (clamd-mailcow) anti-virus (Rspamd will auto-detect a missing ClamAV container) - y/n
  69. SKIP_CLAMD=n
  70.  
  71. # Enable watchdog (watchdog-mailcow) to restart unhealthy containers (experimental)
  72. USE_WATCHDOG=n
  73. # Send notifications by mail (no DKIM signature, sent from watchdog@MAILCOW_HOSTNAME)
  74. WATCHDOG_NOTIFY_EMAIL=info@***.net
  75.  
  76. # Max log lines per service to keep in Redis logs
  77. LOG_LINES=9999
  78.  
  79. # Internal IPv4 /24 subnet, format n.n.n. (expands to n.n.n.0/24)
  80. IPV4_NETWORK=172.22.1
  81.  
  82. # Internal IPv6 subnet in fc00::/7
  83. IPV6_NETWORK=fd4d:6169:6c63:6f77::/64
  84.  
  85. # Use this IPv4 for outgoing connections (SNAT)
  86. #SNAT_TO_SOURCE=
  87.  
  88. # Use this IPv6 for outgoing connections (SNAT)
  89. #SNAT6_TO_SOURCE=
  90.  
  91. # Disable IPv6
  92. # mailcow-network will still be created as IPv6 enabled, all containers will be created
  93. # without IPv6 support.
  94. # Use 1 for disabled, 0 for enabled
  95. SYSCTL_IPV6_DISABLED=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement