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.
107 lines
2.6 KiB
Plaintext
107 lines
2.6 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
|
||
7 years ago
|
BIND_ADDRESS4=127.0.0.1
|
||
|
BIND_ADDRESS6=::1
|
||
8 years ago
|
|
||
9 years ago
|
# Main mail domain
|
||
8 years ago
|
DOMAIN=mailu.io
|
||
9 years ago
|
|
||
7 years ago
|
# Hostnames for this server, separated with comas
|
||
7 years ago
|
HOSTNAMES=mail.mailu.io,alternative.mailu.io,yetanother.mailu.io
|
||
9 years ago
|
|
||
|
# Postmaster local part (will append the main mail domain)
|
||
|
POSTMASTER=admin
|
||
|
|
||
7 years ago
|
# Choose how secure connections will behave (value: letsencrypt, cert, notls)
|
||
|
TLS_FLAVOR=cert
|
||
7 years ago
|
|
||
7 years ago
|
# Authentication rate limit (per source IP address)
|
||
|
AUTH_RATELIMIT=10/minute;1000/hour
|
||
|
|
||
8 years ago
|
###################################
|
||
|
# Optional features
|
||
|
###################################
|
||
|
|
||
7 years ago
|
# Expose the admin interface (value: true, false)
|
||
|
ADMIN=false
|
||
8 years ago
|
|
||
8 years ago
|
# Choose which webmail to run if any (values: roundcube, rainloop, none)
|
||
8 years ago
|
WEBMAIL=none
|
||
|
|
||
8 years ago
|
# Dav server implementation (value: radicale, none)
|
||
|
WEBDAV=none
|
||
|
|
||
7 years ago
|
# Antivirus solution (value: clamav, none)
|
||
|
ANTIVIRUS=none
|
||
7 years ago
|
|
||
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
|
|
||
7 years ago
|
# Recipient delimiter, character used to delimiter localpart from custom address part
|
||
|
# e.g. localpart+custom@domain;tld
|
||
|
RECIPIENT_DELIMITER=+
|
||
|
|
||
7 years ago
|
# DMARC rua and ruf email
|
||
|
DMARC_RUA=admin
|
||
|
DMARC_RUF=admin
|
||
|
|
||
7 years ago
|
###################################
|
||
|
# Web settings
|
||
|
###################################
|
||
|
|
||
|
# Path to the admin interface if enabled
|
||
7 years ago
|
WEB_ADMIN=/admin
|
||
7 years ago
|
|
||
|
# Path to the webmail if enabled
|
||
7 years ago
|
WEB_WEBMAIL=/webmail
|
||
7 years ago
|
|
||
7 years ago
|
# Website name
|
||
|
SITENAME=Mailu
|
||
|
|
||
|
# Linked Website URL
|
||
|
WEBSITE=https://mailu.io
|
||
|
|
||
8 years ago
|
###################################
|
||
7 years ago
|
# Advanced settings
|
||
8 years ago
|
###################################
|
||
|
|
||
7 years ago
|
# Docker-compose project name, this will prepended to containers names.
|
||
|
COMPOSE_PROJECT_NAME=mailu
|
||
|
|
||
|
# Default password scheme used for newly created accounts and changed passwords
|
||
|
# (value: SHA512-CRYPT, SHA256-CRYPT, MD5-CRYPT, CRYPT)
|
||
|
PASSWORD_SCHEME=SHA512-CRYPT
|