Guest User

mailu-env

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