mmoo9154

Untitled

May 22nd, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.23 KB | None | 0 0
  1. #------------------------------------------------------ .env
  2. # Mailu main configuration file
  3. #
  4. # Most configuration variables can be modified through the Web interface,
  5. # these few settings must however be configured before starting the mail
  6. # server and require a restart upon change.
  7.  
  8. ###################################
  9. # Common configuration variables
  10. ###################################
  11.  
  12. # Set this to the path where Mailu data and configuration is stored
  13. ROOT=/mailu
  14.  
  15. # Mailu version to run (1.0, 1.1, etc. or master)
  16. VERSION=1.5
  17.  
  18. # Set to a randomly generated 16 bytes string
  19. SECRET_KEY=<snip>
  20.  
  21. # Address where listening ports should bind
  22. BIND_ADDRESS4=0.0.0.0
  23. BIND_ADDRESS6=::1
  24.  
  25. # Main mail domain
  26. DOMAIN=rescopa.com
  27.  
  28. # Hostnames for this server, separated with comas
  29. HOSTNAMES=rescopa.com,mail.rescopa.com,smpt.rescopa.com,thefamilycore.com,mail.thefamilycore.com,smtp.thefamilycore.com
  30.  
  31. # Postmaster local part (will append the main mail domain)
  32. POSTMASTER=postmaster
  33.  
  34. # Choose how secure connections will behave (value: letsencrypt, cert, notls, mail)
  35. TLS_FLAVOR=letsencrypt
  36.  
  37. # Authentication rate limit (per source IP address)
  38. AUTH_RATELIMIT=10/minute;1000/hour
  39.  
  40. # Opt-out of statistics, replace with "True" to opt out
  41. DISABLE_STATISTICS=False
  42.  
  43. ###################################
  44. # Optional features
  45. ###################################
  46.  
  47. # Expose the admin interface (value: true, false)
  48. ADMIN=true
  49.  
  50. # Choose which webmail to run if any (values: roundcube, rainloop, none)
  51. WEBMAIL=roundcube
  52.  
  53. # Dav server implementation (value: radicale, none)
  54. WEBDAV=none
  55.  
  56. # Antivirus solution (value: clamav, none)
  57. ANTIVIRUS=none
  58.  
  59. ###################################
  60. # Mail settings
  61. ###################################
  62.  
  63. # Message size limit in bytes
  64. # Default: accept messages up to 50MB
  65. MESSAGE_SIZE_LIMIT=50000000
  66.  
  67. # Networks granted relay permissions, make sure that you include your Docker
  68. # internal network (default to 172.17.0.0/16)
  69. RELAYNETS=172.16.0.0/12,172.18.0.0/16
  70.  
  71. # Will relay all outgoing mails if configured
  72. RELAYHOST=
  73.  
  74. # Fetchmail delay
  75. FETCHMAIL_DELAY=600
  76.  
  77. # Recipient delimiter, character used to delimiter localpart from custom address part
  78. # e.g. localpart+custom@domain;tld
  79. RECIPIENT_DELIMITER=+
  80.  
  81. # DMARC rua and ruf email
  82. DMARC_RUA=admin
  83. DMARC_RUF=admin
  84.  
  85. # Weclome email, enable and set a topic and body if you wish to send welcome
  86. # emails to all users.
  87. WELCOME=false
  88. WELCOME_SUBJECT=Welcome to your new email account
  89. WELCOME_BODY=Welcome to your new email account, if you can read this, then it is configured properly!
  90.  
  91. ###################################
  92. # Web settings
  93. ###################################
  94.  
  95. # Path to the admin interface if enabled
  96. WEB_ADMIN=/admin
  97.  
  98. # Path to the webmail if enabled
  99. WEB_WEBMAIL=/webmail
  100.  
  101. # Website name
  102. SITENAME=rescopa.com
  103.  
  104. # Linked Website URL
  105. WEBSITE=https://rescopa.com
  106.  
  107. ###################################
  108. # Advanced settings
  109. ###################################
  110.  
  111. # Docker-compose project name, this will prepended to containers names.
  112. COMPOSE_PROJECT_NAME=mailu
  113.  
  114. # Default password scheme used for newly created accounts and changed passwords
  115. # (value: SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
  116. PASSWORD_SCHEME=SHA512-CRYPT
Advertisement
Add Comment
Please, Sign In to add comment