2016-10-28 00:41:27 +02:00
|
|
|
# Mailu main configuration file
|
2016-03-02 22:25:56 +02:00
|
|
|
#
|
|
|
|
# Most configuration variables can be modified through the Web interface,
|
|
|
|
# these few settings must however be configured before starting the mail
|
|
|
|
# server and require a restart upon change.
|
|
|
|
|
2016-08-21 15:53:00 +02:00
|
|
|
###################################
|
|
|
|
# Common configuration variables
|
|
|
|
###################################
|
2016-08-20 16:32:10 +02:00
|
|
|
|
2016-10-28 00:41:27 +02:00
|
|
|
# Set this to the path where Mailu data and configuration is stored
|
|
|
|
ROOT=/mailu
|
2016-08-20 16:32:10 +02:00
|
|
|
|
2016-10-28 00:41:27 +02:00
|
|
|
# Mailu version to run (stable, 1.0, 1.1, etc. or latest)
|
2016-08-20 16:52:44 +02:00
|
|
|
VERSION=stable
|
|
|
|
|
2016-03-02 22:25:56 +02:00
|
|
|
# Set to a randomly generated 16 bytes string
|
2016-08-20 14:35:42 +02:00
|
|
|
SECRET_KEY=ChangeMeChangeMe
|
2016-03-02 22:25:56 +02:00
|
|
|
|
2016-08-20 17:01:12 +02:00
|
|
|
# Address where listening ports should bind
|
|
|
|
BIND_ADDRESS=127.0.0.1
|
|
|
|
|
2016-03-02 22:25:56 +02:00
|
|
|
# Main mail domain
|
2016-10-28 00:41:27 +02:00
|
|
|
DOMAIN=mailu.io
|
2016-03-02 22:25:56 +02:00
|
|
|
|
|
|
|
# Exposed mail-server hostname
|
2016-10-28 00:41:27 +02:00
|
|
|
HOSTNAME=mail.mailu.io
|
2016-03-02 22:25:56 +02:00
|
|
|
|
|
|
|
# Postmaster local part (will append the main mail domain)
|
|
|
|
POSTMASTER=admin
|
|
|
|
|
2016-08-21 15:53:00 +02:00
|
|
|
# Docker-compose project name, this will prepended to containers names.
|
2016-10-28 00:41:27 +02:00
|
|
|
COMPOSE_PROJECT_NAME=mailu
|
2016-08-21 15:53:00 +02:00
|
|
|
|
|
|
|
###################################
|
|
|
|
# Optional features
|
|
|
|
###################################
|
|
|
|
|
2017-03-02 05:02:11 +02:00
|
|
|
# Choose which frontend Web server to run if any (value: nginx, nginx-no-https, none)
|
2016-08-21 14:17:00 +02:00
|
|
|
FRONTEND=none
|
|
|
|
|
2016-09-03 14:10:42 +02:00
|
|
|
# Choose which webmail to run if any (values: roundcube, rainloop, none)
|
2016-08-20 16:48:29 +02:00
|
|
|
WEBMAIL=none
|
|
|
|
|
2016-09-10 12:07:32 +02:00
|
|
|
# Expose the admin interface in publicly (values: yes, no)
|
|
|
|
EXPOSE_ADMIN=no
|
|
|
|
|
2016-11-10 10:59:48 +02:00
|
|
|
# Use Letsencrypt to generate a TLS certificate (uncomment to enable)
|
|
|
|
# ENABLE_CERTBOT=True
|
|
|
|
|
2016-11-30 15:02:36 +02:00
|
|
|
# Dav server implementation (value: radicale, none)
|
|
|
|
WEBDAV=none
|
|
|
|
|
2016-08-21 15:53:00 +02:00
|
|
|
###################################
|
|
|
|
# Mail settings
|
|
|
|
###################################
|
|
|
|
|
2016-09-25 01:46:10 +02:00
|
|
|
# Message size limit in bytes
|
|
|
|
# Default: accept messages up to 50MB
|
2016-10-02 09:48:52 +02:00
|
|
|
MESSAGE_SIZE_LIMIT=50000000
|
2016-09-25 01:46:10 +02:00
|
|
|
|
2016-03-02 22:25:56 +02:00
|
|
|
# Networks granted relay permissions, make sure that you include your Docker
|
|
|
|
# internal network (default to 172.17.0.0/16)
|
2016-04-20 21:17:43 +02:00
|
|
|
RELAYNETS=172.16.0.0/12
|
2016-05-29 15:57:21 +02:00
|
|
|
|
2016-08-18 16:08:36 +02:00
|
|
|
# Will relay all outgoing mails if configured
|
|
|
|
RELAYHOST=
|
|
|
|
|
2016-05-29 15:57:21 +02:00
|
|
|
# Fetchmail delay
|
2016-08-18 16:08:36 +02:00
|
|
|
FETCHMAIL_DELAY=600
|
2016-08-21 15:53:00 +02:00
|
|
|
|
2017-02-25 10:55:00 +02:00
|
|
|
###################################
|
|
|
|
# Nginx settings
|
|
|
|
###################################
|
|
|
|
|
|
|
|
# SSL DHPARAM Bits
|
|
|
|
NGINX_SSL_DHPARAM_BITS=2048
|
|
|
|
|
2016-08-21 15:53:00 +02:00
|
|
|
###################################
|
|
|
|
# Developers
|
|
|
|
###################################
|
|
|
|
|
2016-11-10 10:59:48 +02:00
|
|
|
# Uncomment this to enable debugging globally
|
|
|
|
# DEBUG=True
|