From e60e2d180e04dbb7a77e8045b5735c264a1b64ff Mon Sep 17 00:00:00 2001 From: Lukas Elsner Date: Fri, 20 Sep 2019 10:40:37 -0600 Subject: [PATCH] Separate environments and simplify docker-compose.yml --- .env-mailserver.dist | 335 ++++++++++++++++++++++++++++++++++++++++ .env.dist | 330 --------------------------------------- README.md | 4 +- docker-compose.yml.dist | 72 +-------- 4 files changed, 340 insertions(+), 401 deletions(-) create mode 100644 .env-mailserver.dist diff --git a/.env-mailserver.dist b/.env-mailserver.dist new file mode 100644 index 00000000..6499b8b5 --- /dev/null +++ b/.env-mailserver.dist @@ -0,0 +1,335 @@ + +# ----------------------------------------------------------------------------------------------------------------------------- +# --------------------- General Settings -------------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +# empty => uses the `hostname` command to get the mail server's canonical hostname +# => Specify a fully-qualified domainname to serve mail for. This is used for many of the config features so if you can't set your hostname (e.g. you're in a container platform that doesn't let you) specify it in this environment variable. +OVERRIDE_HOSTNAME= + +# 0 => Debug disabled +# 1 => Enables debug on startup +DMS_DEBUG=0 + +# 0 => mail state in default directories +# 1 => consolidate all states into a single directory (`/var/mail-state`) to allow persistence using docker volumes +ONE_DIR=0 + +# empty => postmaster@domain.com +# => Specify the postmaster address +POSTMASTER_ADDRESS= + +# Set different options for mynetworks option (can be overwrite in postfix-main.cf) +# empty => localhost only +# host => Add docker host (ipv4 only) +# network => Add all docker containers (ipv4 only) +PERMIT_DOCKER= + +# empty => modern +# modern => Enables TLSv1.2 and modern ciphers only. (default) +# intermediate => Enables TLSv1, TLSv1.1 and TLSv1.2 and broad compatibility ciphers. +# old => NOT implemented. If you really need it, then customize the TLS ciphers overriding postfix and dovecot settings +# (https://github.com/tomav/docker-mailserver/wiki/) +TLS_LEVEL= + +# Configures the handling of creating mails with forged sender addresses. +# +# empty => (not recommended, but default for backwards compatability reasons) +# Mail address spoofing allowed. Any logged in user may create email messages with a forged sender address. +# See also https://en.wikipedia.org/wiki/Email_spoofing +# 1 => (recommended) Mail spoofing denied. Each user may only send with his own or his alias addresses. +# Addresses with extension delimiters(http://www.postfix.org/postconf.5.html#recipient_delimiter) are not able to send messages. +SPOOF_PROTECTION= + +# Enables the Sender Rewriting Scheme. SRS is needed if your mail server acts as forwarder. See [postsrsd](https://github.com/roehling/postsrsd/blob/master/README.md#sender-rewriting-scheme-crash-course) for further explanation. +# - **0** => Disabled +# - 1 => Enabled +ENABLE_SRS=0 + +# 1 => Enables POP3 service +# empty => disables POP3 +ENABLE_POP3= +ENABLE_CLAMAV=0 + +# If you enable Fail2Ban, don't forget to add the following lines to your `docker-compose.yml`: +# cap_add: +# - NET_ADMIN +# Otherwise, `iptables` won't be able to ban IPs. +ENABLE_FAIL2BAN=0 + +# 1 => Enables Managesieve on port 4190 +# empty => disables Managesieve +ENABLE_MANAGESIEVE= + +# **enforce** => Allow other tests to complete. Reject attempts to deliver mail with a 550 SMTP reply, and log the helo/sender/recipient information. Repeat this test the next time the client connects. +# drop => Drop the connection immediately with a 521 SMTP reply. Repeat this test the next time the client connects. +# ignore => Ignore the failure of this test. Allow other tests to complete. Repeat this test the next time the client connects. This option is useful for testing and collecting statistics without blocking mail. +POSTSCREEN_ACTION=enforce + +# empty => all daemons start +# 1 => only launch postfix smtp +SMTP_ONLY= + +# Please read [the SSL page in the wiki](https://github.com/tomav/docker-mailserver/wiki/Configure-SSL) for more information. +# +# empty => SSL disabled +# letsencrypt => Enables Let's Encrypt certificates +# custom => Enables custom certificates +# manual => Let's you manually specify locations of your SSL certificates for non-standard cases +# self-signed => Enables self-signed certificates +SSL_TYPE= + +# Set how many days a virusmail will stay on the server before being deleted +# empty => 7 days +VIRUSMAILS_DELETE_DELAY= + +# This Option is activating the Usage of POSTFIX_DAGENT to specify a lmtp client different from default dovecot socket. +# empty => disabled +# 1 => enabled +ENABLE_POSTFIX_VIRTUAL_TRANSPORT= + +# Enabled by ENABLE_POSTFIX_VIRTUAL_TRANSPORT. Specify the final delivery of postfix +# +# empty => fail +# `lmtp:unix:private/dovecot-lmtp` (use socket) +# `lmtps:inet::` (secure lmtp with starttls, take a look at https://sys4.de/en/blog/2014/11/17/sicheres-lmtp-mit-starttls-in-dovecot/) +# `lmtp::2003` (use kopano as mailstore) +# etc. +POSTFIX_DAGENT= + +# Set the mailbox size limit for all users. If set to zero, the size will be unlimited (default). +# +# empty => 0 +POSTFIX_MAILBOX_SIZE_LIMIT= + +# Set the message size limit for all users. If set to zero, the size will be unlimited (not recommended!) +# +# empty => 10240000 (~10 MB) +POSTFIX_MESSAGE_SIZE_LIMIT= + +# Enables a report being sent (created by pflogsumm) on a regular basis. +# **0** => Report emails are disabled +# 1 => Using POSTMASTER_ADDRESS as the recipient +# => Specify the recipient address +REPORT_RECIPIENT=0 + + +# Change the sending address for mail report +# **empty** => mailserver-report@hostname +# => Specify the report sender (From) address +REPORT_SENDER= + +# Changes the interval in which a report is being sent. +# **daily** => Send a daily report +# weekly => Send a report every week +# monthly => Send a report every month +# +# Note: This Variable actually controls logrotate inside the container and rotates the log depending on this setting. The main log output is still available in its entirety via `docker logs mail` (Or your respective container name). If you want to control logrotation for the docker generated logfile see: [Docker Logging Drivers](https://docs.docker.com/config/containers/logging/configure/) +REPORT_INTERVAL=daily + +# ----------------------------------------------------------------------------------------------------------------------------- +# --------------------- Spamassassin section ---------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +ENABLE_SPAMASSASSIN=0 + +# add spam info headers if at, or above that level: +SA_TAG=2.0 + +# add 'spam detected' headers at that level +SA_TAG2=6.31 + +# triggers spam evasive actions +SA_KILL=6.31 + +# add tag to subject if spam detected +SA_SPAM_SUBJECT=***SPAM***** + +# ----------------------------------------------------------------------------------------------------------------------------- +# --------------------- Fetchmail section ------------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +ENABLE_FETCHMAIL=0 + +# The interval to fetch mail in seconds +FETCHMAIL_POLL=300 + +# ----------------------------------------------------------------------------------------------------------------------------- +# --------------------- LDAP section ------------------------------------------------------------------------------------------ +# ----------------------------------------------------------------------------------------------------------------------------- + +# A second container for the ldap service is necessary (i.e. https://github.com/osixia/docker-openldap) +# For preparing the ldap server to use in combination with this container this article may be helpful: http://acidx.net/wordpress/2014/06/installing-a-mailserver-with-postfix-dovecot-sasl-ldap-roundcube/ + +# empty => LDAP authentification is disabled +# 1 => LDAP authentification is enabled +ENABLE_LDAP= + +# empty => no +# yes => LDAP over TLS enabled for Postfix +LDAP_START_TLS= + +# If you going to use the mailserver in combination with docker-compose you can set the service name here +# empty => mail.domain.com +# Specify the dns-name/ip-address where the ldap-server +LDAP_SERVER_HOST= + +# empty => ou=people,dc=domain,dc=com +# => e.g. LDAP_SEARCH_BASE=dc=mydomain,dc=local +LDAP_SEARCH_BASE= + +# empty => cn=admin,dc=domain,dc=com +# => take a look at examples of SASL_LDAP_BIND_DN +LDAP_BIND_DN= + +# empty** => admin +# => Specify the password to bind against ldap +LDAP_BIND_PW= + +# e.g. `"(&(mail=%s)(mailEnabled=TRUE))"` +# => Specify how ldap should be asked for users +LDAP_QUERY_FILTER_USER= + +# e.g. `"(&(mailGroupMember=%s)(mailEnabled=TRUE))"` +# => Specify how ldap should be asked for groups +LDAP_QUERY_FILTER_GROUP= + +# e.g. `"(&(mailAlias=%s)(mailEnabled=TRUE))"` +# => Specify how ldap should be asked for aliases +LDAP_QUERY_FILTER_ALIAS= + +# e.g. `"(&(|(mail=*@%s)(mailalias=*@%s)(mailGroupMember=*@%s))(mailEnabled=TRUE))"` +# => Specify how ldap should be asked for domains +LDAP_QUERY_FILTER_DOMAIN= + +# ----------------------------------------------------------------------------------------------------------------------------- +# ---------------- Dovecot section -------------------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +# empty => no +# yes => LDAP over TLS enabled for Dovecot +DOVECOT_TLS= + +# e.g. `"(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"` +DOVECOT_USER_FILTER= + +# e.g. `"(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"` +DOVECOT_PASS_FILTER= + +# ----------------------------------------------------------------------------------------------------------------------------- +# ---------------- Postgrey section ------------------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +ENABLE_POSTGREY=0 +# greylist for N seconds +POSTGREY_DELAY=300 +# delete entries older than N days since the last time that they have been seen +POSTGREY_MAX_AGE=35 +# response when a mail is greylisted +POSTGREY_TEXT=Delayed by postgrey +# whitelist host after N successful deliveries (N=0 to disable whitelisting) +POSTGREY_AUTO_WHITELIST_CLIENTS=5 + +# ----------------------------------------------------------------------------------------------------------------------------- +# ---------------- SASL section ----------------------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +ENABLE_SASLAUTHD=0 + +# empty => pam +# `ldap` => authenticate against ldap server +# `shadow` => authenticate against local user db +# `mysql` => authenticate against mysql db +# `rimap` => authenticate against imap server +# NOTE: can be a list of mechanisms like pam ldap shadow +SASLAUTHD_MECHANISMS= + +# empty => None +# e.g. with SASLAUTHD_MECHANISMS rimap you need to specify the ip-address/servername of the imap server ==> xxx.xxx.xxx.xxx +SASLAUTHD_MECH_OPTIONS= + +# empty => localhost +SASLAUTHD_LDAP_SERVER= + +# empty or 0 => `ldap://` will be used +# 1 => `ldaps://` will be used +SASLAUTHD_LDAP_SSL= + +# empty => anonymous bind +# specify an object with priviliges to search the directory tree +# e.g. active directory: SASLAUTHD_LDAP_BIND_DN=cn=Administrator,cn=Users,dc=mydomain,dc=net +# e.g. openldap: SASLAUTHD_LDAP_BIND_DN=cn=admin,dc=mydomain,dc=net +SASLAUTHD_LDAP_BIND_DN= + +# empty => anonymous bind +SASLAUTHD_LDAP_PASSWORD= + +# empty => Reverting to SASLAUTHD_MECHANISMS pam +# specify the search base +SASLAUTHD_LDAP_SEARCH_BASE= + +# empty => default filter `(&(uniqueIdentifier=%u)(mailEnabled=TRUE))` +# e.g. for active directory: `(&(sAMAccountName=%U)(objectClass=person))` +# e.g. for openldap: `(&(uid=%U)(objectClass=person))` +SASLAUTHD_LDAP_FILTER= + +# empty => no +# yes => LDAP over TLS enabled for SASL +# Must not be used together with SASLAUTHD_LDAP_SSL=1_ +SASLAUTHD_LDAP_START_TLS= + +# empty => no +# yes => Require and verify server certificate +SASLAUTHD_LDAP_TLS_CHECK_PEER= + +# empty => No sasl_passwd will be created +# string => `/etc/postfix/sasl_passwd` will be created with the string as password +SASL_PASSWD= + +# ----------------------------------------------------------------------------------------------------------------------------- +# ---------------- SRS section -------------------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +# empty => Envelope sender will be rewritten for all domains +# provide comma separated list of domains to exclude from rewriting +SRS_EXCLUDE_DOMAINS= + +# empty => generated when the image is built +# provide a secret to use in base64 +# you may specify multiple keys, comma separated. the first one is used for +# signing and the remaining will be used for verification. this is how you +# rotate and expire keys +SRS_SECRET= + +# ----------------------------------------------------------------------------------------------------------------------------- +# ---------------- Default relay host section --------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +# Setup relaying all mail through a default relay host +# +# empty => don't configure default relay host +# default host and optional port to relay all mail through +DEFAULT_RELAY_HOST= + +# ----------------------------------------------------------------------------------------------------------------------------- +# ---------------- Multi-domain relay section --------------------------------------------------------------------------------- +# ----------------------------------------------------------------------------------------------------------------------------- + +# Setup relaying for multiple domains based on the domain name of the sender +# optionally uses usernames and passwords in postfix-sasl-password.cf and relay host mappings in postfix-relaymap.cf +# +# empty => don't configure relay host +# default host to relay mail through +RELAY_HOST= + +# empty => 25 +# default port to relay mail +RELAY_PORT=25 + +# empty => no default +# default relay username (if no specific entry exists in postfix-sasl-password.cf) +RELAY_USER= + +# empty => no default +# password for default relay user +RELAY_PASSWORD= diff --git a/.env.dist b/.env.dist index 6f39dd82..63563283 100644 --- a/.env.dist +++ b/.env.dist @@ -7,333 +7,3 @@ HOSTNAME=mail DOMAINNAME=domain.com CONTAINER_NAME=mail -# empty => uses the `hostname` command to get the mail server's canonical hostname -# => Specify a fully-qualified domainname to serve mail for. This is used for many of the config features so if you can't set your hostname (e.g. you're in a container platform that doesn't let you) specify it in this environment variable. -OVERRIDE_HOSTNAME= - -# 0 => Debug disabled -# 1 => Enables debug on startup -DMS_DEBUG=0 - -# 0 => mail state in default directories -# 1 => consolidate all states into a single directory (`/var/mail-state`) to allow persistence using docker volumes -ONE_DIR=0 - -# empty => postmaster@domain.com -# => Specify the postmaster address -POSTMASTER_ADDRESS= - -# Set different options for mynetworks option (can be overwrite in postfix-main.cf) -# empty => localhost only -# host => Add docker host (ipv4 only) -# network => Add all docker containers (ipv4 only) -PERMIT_DOCKER= - -# empty => modern -# modern => Enables TLSv1.2 and modern ciphers only. (default) -# intermediate => Enables TLSv1, TLSv1.1 and TLSv1.2 and broad compatibility ciphers. -# old => NOT implemented. If you really need it, then customize the TLS ciphers overriding postfix and dovecot settings -# (https://github.com/tomav/docker-mailserver/wiki/) -TLS_LEVEL= - -# Configures the handling of creating mails with forged sender addresses. -# -# empty => (not recommended, but default for backwards compatability reasons) -# Mail address spoofing allowed. Any logged in user may create email messages with a forged sender address. -# See also https://en.wikipedia.org/wiki/Email_spoofing -# 1 => (recommended) Mail spoofing denied. Each user may only send with his own or his alias addresses. -# Addresses with extension delimiters(http://www.postfix.org/postconf.5.html#recipient_delimiter) are not able to send messages. -SPOOF_PROTECTION= - -# Enables the Sender Rewriting Scheme. SRS is needed if your mail server acts as forwarder. See [postsrsd](https://github.com/roehling/postsrsd/blob/master/README.md#sender-rewriting-scheme-crash-course) for further explanation. -# - **0** => Disabled -# - 1 => Enabled -ENABLE_SRS=0 - -# 1 => Enables POP3 service -# empty => disables POP3 -ENABLE_POP3= -ENABLE_CLAMAV=0 - -# If you enable Fail2Ban, don't forget to add the following lines to your `docker-compose.yml`: -# cap_add: -# - NET_ADMIN -# Otherwise, `iptables` won't be able to ban IPs. -ENABLE_FAIL2BAN=0 - -# 1 => Enables Managesieve on port 4190 -# empty => disables Managesieve -ENABLE_MANAGESIEVE= - -# **enforce** => Allow other tests to complete. Reject attempts to deliver mail with a 550 SMTP reply, and log the helo/sender/recipient information. Repeat this test the next time the client connects. -# drop => Drop the connection immediately with a 521 SMTP reply. Repeat this test the next time the client connects. -# ignore => Ignore the failure of this test. Allow other tests to complete. Repeat this test the next time the client connects. This option is useful for testing and collecting statistics without blocking mail. -POSTSCREEN_ACTION=enforce - -# empty => all daemons start -# 1 => only launch postfix smtp -SMTP_ONLY= - -# Please read [the SSL page in the wiki](https://github.com/tomav/docker-mailserver/wiki/Configure-SSL) for more information. -# -# empty => SSL disabled -# letsencrypt => Enables Let's Encrypt certificates -# custom => Enables custom certificates -# manual => Let's you manually specify locations of your SSL certificates for non-standard cases -# self-signed => Enables self-signed certificates -SSL_TYPE= - -# Set how many days a virusmail will stay on the server before being deleted -# empty => 7 days -VIRUSMAILS_DELETE_DELAY= - -# This Option is activating the Usage of POSTFIX_DAGENT to specify a lmtp client different from default dovecot socket. -# empty => disabled -# 1 => enabled -ENABLE_POSTFIX_VIRTUAL_TRANSPORT= - -# Enabled by ENABLE_POSTFIX_VIRTUAL_TRANSPORT. Specify the final delivery of postfix -# -# empty => fail -# `lmtp:unix:private/dovecot-lmtp` (use socket) -# `lmtps:inet::` (secure lmtp with starttls, take a look at https://sys4.de/en/blog/2014/11/17/sicheres-lmtp-mit-starttls-in-dovecot/) -# `lmtp::2003` (use kopano as mailstore) -# etc. -POSTFIX_DAGENT= - -# Set the mailbox size limit for all users. If set to zero, the size will be unlimited (default). -# -# empty => 0 -POSTFIX_MAILBOX_SIZE_LIMIT= - -# Set the message size limit for all users. If set to zero, the size will be unlimited (not recommended!) -# -# empty => 10240000 (~10 MB) -POSTFIX_MESSAGE_SIZE_LIMIT= - -# Enables a report being sent (created by pflogsumm) on a regular basis. -# **0** => Report emails are disabled -# 1 => Using POSTMASTER_ADDRESS as the recipient -# => Specify the recipient address -REPORT_RECIPIENT=0 - - -# Change the sending address for mail report -# **empty** => mailserver-report@hostname -# => Specify the report sender (From) address -REPORT_SENDER= - -# Changes the interval in which a report is being sent. -# **daily** => Send a daily report -# weekly => Send a report every week -# monthly => Send a report every month -# -# Note: This Variable actually controls logrotate inside the container and rotates the log depending on this setting. The main log output is still available in its entirety via `docker logs mail` (Or your respective container name). If you want to control logrotation for the docker generated logfile see: [Docker Logging Drivers](https://docs.docker.com/config/containers/logging/configure/) -REPORT_INTERVAL=daily - -# ----------------------------------------------------------------------------------------------------------------------------- -# --------------------- Spamassassin section ---------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -ENABLE_SPAMASSASSIN=0 - -# add spam info headers if at, or above that level: -SA_TAG=2.0 - -# add 'spam detected' headers at that level -SA_TAG2=6.31 - -# triggers spam evasive actions -SA_KILL=6.31 - -# add tag to subject if spam detected -SA_SPAM_SUBJECT=***SPAM***** - -# ----------------------------------------------------------------------------------------------------------------------------- -# --------------------- Fetchmail section ------------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -ENABLE_FETCHMAIL=0 - -# The interval to fetch mail in seconds -FETCHMAIL_POLL=300 - -# ----------------------------------------------------------------------------------------------------------------------------- -# --------------------- LDAP section ------------------------------------------------------------------------------------------ -# ----------------------------------------------------------------------------------------------------------------------------- - -# A second container for the ldap service is necessary (i.e. https://github.com/osixia/docker-openldap) -# For preparing the ldap server to use in combination with this container this article may be helpful: http://acidx.net/wordpress/2014/06/installing-a-mailserver-with-postfix-dovecot-sasl-ldap-roundcube/ - -# empty => LDAP authentification is disabled -# 1 => LDAP authentification is enabled -ENABLE_LDAP= - -# empty => no -# yes => LDAP over TLS enabled for Postfix -LDAP_START_TLS= - -# If you going to use the mailserver in combination with docker-compose you can set the service name here -# empty => mail.domain.com -# Specify the dns-name/ip-address where the ldap-server -LDAP_SERVER_HOST= - -# empty => ou=people,dc=domain,dc=com -# => e.g. LDAP_SEARCH_BASE=dc=mydomain,dc=local -LDAP_SEARCH_BASE= - -# empty => cn=admin,dc=domain,dc=com -# => take a look at examples of SASL_LDAP_BIND_DN -LDAP_BIND_DN= - -# empty** => admin -# => Specify the password to bind against ldap -LDAP_BIND_PW= - -# e.g. `"(&(mail=%s)(mailEnabled=TRUE))"` -# => Specify how ldap should be asked for users -LDAP_QUERY_FILTER_USER= - -# e.g. `"(&(mailGroupMember=%s)(mailEnabled=TRUE))"` -# => Specify how ldap should be asked for groups -LDAP_QUERY_FILTER_GROUP= - -# e.g. `"(&(mailAlias=%s)(mailEnabled=TRUE))"` -# => Specify how ldap should be asked for aliases -LDAP_QUERY_FILTER_ALIAS= - -# e.g. `"(&(|(mail=*@%s)(mailalias=*@%s)(mailGroupMember=*@%s))(mailEnabled=TRUE))"` -# => Specify how ldap should be asked for domains -LDAP_QUERY_FILTER_DOMAIN= - -# ----------------------------------------------------------------------------------------------------------------------------- -# ---------------- Dovecot section -------------------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -# empty => no -# yes => LDAP over TLS enabled for Dovecot -DOVECOT_TLS= - -# e.g. `"(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"` -DOVECOT_USER_FILTER= - -# e.g. `"(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"` -DOVECOT_PASS_FILTER= - -# ----------------------------------------------------------------------------------------------------------------------------- -# ---------------- Postgrey section ------------------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -ENABLE_POSTGREY=0 -# greylist for N seconds -POSTGREY_DELAY=300 -# delete entries older than N days since the last time that they have been seen -POSTGREY_MAX_AGE=35 -# response when a mail is greylisted -POSTGREY_TEXT=Delayed by postgrey -# whitelist host after N successful deliveries (N=0 to disable whitelisting) -POSTGREY_AUTO_WHITELIST_CLIENTS=5 - -# ----------------------------------------------------------------------------------------------------------------------------- -# ---------------- SASL section ----------------------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -ENABLE_SASLAUTHD=0 - -# empty => pam -# `ldap` => authenticate against ldap server -# `shadow` => authenticate against local user db -# `mysql` => authenticate against mysql db -# `rimap` => authenticate against imap server -# NOTE: can be a list of mechanisms like pam ldap shadow -SASLAUTHD_MECHANISMS= - -# empty => None -# e.g. with SASLAUTHD_MECHANISMS rimap you need to specify the ip-address/servername of the imap server ==> xxx.xxx.xxx.xxx -SASLAUTHD_MECH_OPTIONS= - -# empty => localhost -SASLAUTHD_LDAP_SERVER= - -# empty or 0 => `ldap://` will be used -# 1 => `ldaps://` will be used -SASLAUTHD_LDAP_SSL= - -# empty => anonymous bind -# specify an object with priviliges to search the directory tree -# e.g. active directory: SASLAUTHD_LDAP_BIND_DN=cn=Administrator,cn=Users,dc=mydomain,dc=net -# e.g. openldap: SASLAUTHD_LDAP_BIND_DN=cn=admin,dc=mydomain,dc=net -SASLAUTHD_LDAP_BIND_DN= - -# empty => anonymous bind -SASLAUTHD_LDAP_PASSWORD= - -# empty => Reverting to SASLAUTHD_MECHANISMS pam -# specify the search base -SASLAUTHD_LDAP_SEARCH_BASE= - -# empty => default filter `(&(uniqueIdentifier=%u)(mailEnabled=TRUE))` -# e.g. for active directory: `(&(sAMAccountName=%U)(objectClass=person))` -# e.g. for openldap: `(&(uid=%U)(objectClass=person))` -SASLAUTHD_LDAP_FILTER= - -# empty => no -# yes => LDAP over TLS enabled for SASL -# Must not be used together with SASLAUTHD_LDAP_SSL=1_ -SASLAUTHD_LDAP_START_TLS= - -# empty => no -# yes => Require and verify server certificate -SASLAUTHD_LDAP_TLS_CHECK_PEER= - -# empty => No sasl_passwd will be created -# string => `/etc/postfix/sasl_passwd` will be created with the string as password -SASL_PASSWD= - -# ----------------------------------------------------------------------------------------------------------------------------- -# ---------------- SRS section -------------------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -# empty => Envelope sender will be rewritten for all domains -# provide comma separated list of domains to exclude from rewriting -SRS_EXCLUDE_DOMAINS= - -# empty => generated when the image is built -# provide a secret to use in base64 -# you may specify multiple keys, comma separated. the first one is used for -# signing and the remaining will be used for verification. this is how you -# rotate and expire keys -SRS_SECRET= - -# ----------------------------------------------------------------------------------------------------------------------------- -# ---------------- Default relay host section --------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -# Setup relaying all mail through a default relay host -# -# empty => don't configure default relay host -# default host and optional port to relay all mail through -DEFAULT_RELAY_HOST= - -# ----------------------------------------------------------------------------------------------------------------------------- -# ---------------- Multi-domain relay section --------------------------------------------------------------------------------- -# ----------------------------------------------------------------------------------------------------------------------------- - -# Setup relaying for multiple domains based on the domain name of the sender -# optionally uses usernames and passwords in postfix-sasl-password.cf and relay host mappings in postfix-relaymap.cf -# -# empty => don't configure relay host -# default host to relay mail through -RELAY_HOST= - -# empty => 25 -# default port to relay mail -RELAY_PORT=25 - -# empty => no default -# default relay username (if no specific entry exists in postfix-sasl-password.cf) -RELAY_USER= - -# empty => no default -# password for default relay user -RELAY_PASSWORD= diff --git a/README.md b/README.md index 9cdd79e1..98849318 100644 --- a/README.md +++ b/README.md @@ -63,8 +63,8 @@ Download the docker-compose.yml, the .env and the setup.sh files: #### Create a docker-compose environment -- Edit the `.env` to your liking. Adapt this file with your FQDN. - - This file supports only simple `VAR=VAL` lines (see [Documentation](https://docs.docker.com/compose/env-file/)). +- Edit the files `.env` and `.env-mailserver` to your liking. + - These files supports only simple `VAR=VAL` lines (see [Documentation](https://docs.docker.com/compose/env-file/)). - Don't quote your values. - Variable substitution is *not* supported (e.g. `OVERRIDE_HOSTNAME=$HOSTNAME.$DOMAINNAME`). - Install [docker-compose](https://docs.docker.com/compose/) in the version `1.7` or higher. diff --git a/docker-compose.yml.dist b/docker-compose.yml.dist index 6873e9a5..9d995e7e 100644 --- a/docker-compose.yml.dist +++ b/docker-compose.yml.dist @@ -15,75 +15,9 @@ services: - mailstate:/var/mail-state - maillogs:/var/log/mail - ./config/:/tmp/docker-mailserver/ - environment: - - DMS_DEBUG=${DMS_DEBUG} - - ENABLE_CLAMAV=${ENABLE_CLAMAV} - - ONE_DIR=${ONE_DIR} - - ENABLE_POP3=${ENABLE_POP3} - - ENABLE_FAIL2BAN=${ENABLE_FAIL2BAN} - - ENABLE_MANAGESIEVE=${ENABLE_MANAGESIEVE} - - OVERRIDE_HOSTNAME=${OVERRIDE_HOSTNAME} - - POSTMASTER_ADDRESS=${POSTMASTER_ADDRESS} - - POSTSCREEN_ACTION=${POSTSCREEN_ACTION} - - REPORT_RECIPIENT=${REPORT_RECIPIENT} - - REPORT_SENDER=${REPORT_SENDER} - - REPORT_INTERVAL=${REPORT_INTERVAL} - - SMTP_ONLY=${SMTP_ONLY} - - SSL_TYPE=${SSL_TYPE} - - TLS_LEVEL=${TLS_LEVEL} - - SPOOF_PROTECTION=${SPOOF_PROTECTION} - - ENABLE_SRS=${ENABLE_SRS} - - PERMIT_DOCKER=${PERMIT_DOCKER} - - VIRUSMAILS_DELETE_DELAY=${VIRUSMAILS_DELETE_DELAY} - - ENABLE_POSTFIX_VIRTUAL_TRANSPORT=${ENABLE_POSTFIX_VIRTUAL_TRANSPORT} - - POSTFIX_DAGENT=${POSTFIX_DAGENT} - - POSTFIX_MAILBOX_SIZE_LIMIT=${POSTFIX_MAILBOX_SIZE_LIMIT} - - POSTFIX_MESSAGE_SIZE_LIMIT=${POSTFIX_MESSAGE_SIZE_LIMIT} - - ENABLE_SPAMASSASSIN=${ENABLE_SPAMASSASSIN} - - SA_TAG=${SA_TAG} - - SA_TAG2=${SA_TAG2} - - SA_KILL=${SA_KILL} - - SA_SPAM_SUBJECT=${SA_SPAM_SUBJECT} - - ENABLE_FETCHMAIL=${ENABLE_FETCHMAIL} - - FETCHMAIL_POLL=${FETCHMAIL_POLL} - - ENABLE_LDAP=${ENABLE_LDAP} - - LDAP_START_TLS=${LDAP_START_TLS} - - LDAP_SERVER_HOST=${LDAP_SERVER_HOST} - - LDAP_SEARCH_BASE=${LDAP_SEARCH_BASE} - - LDAP_BIND_DN=${LDAP_BIND_DN} - - LDAP_BIND_PW=${LDAP_BIND_PW} - - LDAP_QUERY_FILTER_USER=${LDAP_QUERY_FILTER_USER} - - LDAP_QUERY_FILTER_GROUP=${LDAP_QUERY_FILTER_GROUP} - - LDAP_QUERY_FILTER_ALIAS=${LDAP_QUERY_FILTER_ALIAS} - - LDAP_QUERY_FILTER_DOMAIN=${LDAP_QUERY_FILTER_DOMAIN} - - LOGROTATE_INTERVAL=${LOGROTATE_INTERVAL} - - DOVECOT_TLS=${DOVECOT_TLS} - - DOVECOT_USER_FILTER=${DOVECOT_USER_FILTER} - - DOVECOT_PASS_FILTER=${DOVECOT_PASS_FILTER} - - ENABLE_POSTGREY=${ENABLE_POSTGREY} - - POSTGREY_DELAY=${POSTGREY_DELAY} - - POSTGREY_MAX_AGE=${POSTGREY_MAX_AGE} - - POSTGREY_AUTO_WHITELIST_CLIENTS=${POSTGREY_AUTO_WHITELIST_CLIENTS} - - POSTGREY_TEXT=${POSTGREY_TEXT} - - ENABLE_SASLAUTHD=${ENABLE_SASLAUTHD} - - SASLAUTHD_MECHANISMS=${SASLAUTHD_MECHANISMS} - - SASLAUTHD_MECH_OPTIONS=${SASLAUTHD_MECH_OPTIONS} - - SASLAUTHD_LDAP_SERVER=${SASLAUTHD_LDAP_SERVER} - - SASLAUTHD_LDAP_SSL=${SASLAUTHD_LDAP_SSL} - - SASLAUTHD_LDAP_BIND_DN=${SASLAUTHD_LDAP_BIND_DN} - - SASLAUTHD_LDAP_PASSWORD=${SASLAUTHD_LDAP_PASSWORD} - - SASLAUTHD_LDAP_SEARCH_BASE=${SASLAUTHD_LDAP_SEARCH_BASE} - - SASLAUTHD_LDAP_FILTER=${SASLAUTHD_LDAP_FILTER} - - SASLAUTHD_LDAP_START_TLS=${SASLAUTHD_LDAP_START_TLS} - - SASLAUTHD_LDAP_TLS_CHECK_PEER=${SASLAUTHD_LDAP_TLS_CHECK_PEER} - - SASL_PASSWD=${SASL_PASSWD} - - SRS_EXCLUDE_DOMAINS=${SRS_EXCLUDE_DOMAINS} - - SRS_SECRET=${SRS_SECRET} - - DEFAULT_RELAY_HOST=${DEFAULT_RELAY_HOST} - - RELAY_HOST=${RELAY_HOST} - - RELAY_PORT=${RELAY_PORT} - - RELAY_USER=${RELAY_USER} - - RELAY_PASSWORD=${RELAY_PASSWORD} + env_file: + - .env + - .env-mailserver cap_add: - NET_ADMIN - SYS_PTRACE