You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
72 lines
1.8 KiB
Plaintext
72 lines
1.8 KiB
Plaintext
8 years ago
|
# Mailu main configuration file
|
||
9 years ago
|
#
|
||
|
# 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.
|
||
|
|
||
8 years ago
|
###################################
|
||
|
# Common configuration variables
|
||
|
###################################
|
||
8 years ago
|
|
||
8 years ago
|
# Set this to the path where Mailu data and configuration is stored
|
||
|
ROOT=/mailu
|
||
8 years ago
|
|
||
8 years ago
|
# Mailu version to run (stable, 1.0, 1.1, etc. or latest)
|
||
8 years ago
|
VERSION=stable
|
||
|
|
||
9 years ago
|
# Set to a randomly generated 16 bytes string
|
||
8 years ago
|
SECRET_KEY=ChangeMeChangeMe
|
||
9 years ago
|
|
||
8 years ago
|
# Address where listening ports should bind
|
||
|
BIND_ADDRESS=127.0.0.1
|
||
|
|
||
9 years ago
|
# Main mail domain
|
||
8 years ago
|
DOMAIN=mailu.io
|
||
9 years ago
|
|
||
|
# Exposed mail-server hostname
|
||
8 years ago
|
HOSTNAME=mail.mailu.io
|
||
9 years ago
|
|
||
|
# Postmaster local part (will append the main mail domain)
|
||
|
POSTMASTER=admin
|
||
|
|
||
8 years ago
|
# Docker-compose project name, this will prepended to containers names.
|
||
8 years ago
|
COMPOSE_PROJECT_NAME=mailu
|
||
8 years ago
|
|
||
|
###################################
|
||
|
# Optional features
|
||
|
###################################
|
||
|
|
||
8 years ago
|
# Choose which frontend Web server to run if any (value: nginx, none)
|
||
|
FRONTEND=none
|
||
|
|
||
8 years ago
|
# Choose which webmail to run if any (values: roundcube, rainloop, none)
|
||
8 years ago
|
WEBMAIL=none
|
||
|
|
||
8 years ago
|
# Expose the admin interface in publicly (values: yes, no)
|
||
|
EXPOSE_ADMIN=no
|
||
|
|
||
8 years ago
|
###################################
|
||
|
# Mail settings
|
||
|
###################################
|
||
|
|
||
8 years ago
|
# Message size limit in bytes
|
||
|
# Default: accept messages up to 50MB
|
||
8 years ago
|
MESSAGE_SIZE_LIMIT=50000000
|
||
8 years ago
|
|
||
9 years ago
|
# Networks granted relay permissions, make sure that you include your Docker
|
||
|
# internal network (default to 172.17.0.0/16)
|
||
9 years ago
|
RELAYNETS=172.16.0.0/12
|
||
9 years ago
|
|
||
8 years ago
|
# Will relay all outgoing mails if configured
|
||
|
RELAYHOST=
|
||
|
|
||
9 years ago
|
# Fetchmail delay
|
||
8 years ago
|
FETCHMAIL_DELAY=600
|
||
8 years ago
|
|
||
|
###################################
|
||
|
# Developers
|
||
|
###################################
|
||
|
|
||
|
# Set this to enable debugging globally
|
||
|
DEBUG=False
|