A fullstack but simple mail server (smtp, imap, antispam, antivirus...). Only configuration files, no SQL database. Keep it simple and versioned. Easy to deploy and upgrade.
Includes:
Why I created this image: Simple mail server with Docker
Before you open an issue, please have a look this README, the Wiki and Postfix/Dovecot documentation.
Recommended:
Minimum:
Note: You'll need to deactivate some services like ClamAV to be able to run on a host with 512MB of RAM.
docker pull tvial/docker-mailserver:latest
Download the docker-compose.yml, the .env and the setup.sh files:
curl -o setup.sh https://raw.githubusercontent.com/tomav/docker-mailserver/master/setup.sh; chmod a+x ./setup.sh
curl -o docker-compose.yml https://raw.githubusercontent.com/tomav/docker-mailserver/master/docker-compose.yml.dist
curl -o .env https://raw.githubusercontent.com/tomav/docker-mailserver/master/.env.dist
.env to your liking. Adapt this file with your FQDN.1.6 or higher../setup.sh email add <user@domain> [<password>]
./setup.sh config dkim
Now the keys are generated, you can configure your DNS server by just pasting the content of config/opendkim/keys/domain.tld/mail.txt in your domain.tld.hosts zone.
docker-compose up -d mail
You're done!
And don't forget to have a look at the remaining functions of the setup.sh script
If you got any problems with SPF and/or forwarding mails, give SRS a try. You enable SRS by setting ENABLE_SRS=1. See the variable description for further information.
Your config folder will be mounted in /tmp/docker-mailserver/. To understand how things work on boot, please have a look at start-mailserver.sh
restart: always ensures that the mail server container (and ELK container when using the mail server together with ELK stack) is automatically restarted by Docker in cases like a Docker service or host restart or container exit.
Note: Port 25 is only for receiving email from other mailservers and not for submitting email. You need to use port 465 or 587 for this.
version: '2'
services:
mail:
image: tvial/docker-mailserver:latest
hostname: mail
domainname: domain.com
container_name: mail
ports:
- "25:25"
- "143:143"
- "587:587"
- "993:993"
volumes:
- maildata:/var/mail
- mailstate:/var/mail-state
- ./config/:/tmp/docker-mailserver/
environment:
- ENABLE_SPAMASSASSIN=1
- ENABLE_CLAMAV=1
- ENABLE_FAIL2BAN=1
- ENABLE_POSTGREY=1
- ONE_DIR=1
- DMS_DEBUG=0
cap_add:
- NET_ADMIN
- SYS_PTRACE
volumes:
maildata:
driver: local
mailstate:
driver: local
for ldap setup:
version: '2'
services:
mail:
image: tvial/docker-mailserver:latest
hostname: mail
domainname: domain.com
container_name: mail
ports:
- "25:25"
- "143:143"
- "587:587"
- "993:993"
volumes:
- maildata:/var/mail
- mailstate:/var/mail-state
- ./config/:/tmp/docker-mailserver/
environment:
- ENABLE_SPAMASSASSIN=1
- ENABLE_CLAMAV=1
- ENABLE_FAIL2BAN=1
- ENABLE_POSTGREY=1
- ONE_DIR=1
- DMS_DEBUG=0
- ENABLE_LDAP=1
- LDAP_SERVER_HOST=ldap # your ldap container/IP/ServerName
- LDAP_SEARCH_BASE=ou=people,dc=localhost,dc=localdomain
- LDAP_BIND_DN=cn=admin,dc=localhost,dc=localdomain
- LDAP_BIND_PW=admin
- LDAP_QUERY_FILTER_USER="(&(mail=%s)(mailEnabled=TRUE))"
- LDAP_QUERY_FILTER_GROUP="(&(mailGroupMember=%s)(mailEnabled=TRUE))"
- LDAP_QUERY_FILTER_ALIAS="(&(mailAlias=%s)(mailEnabled=TRUE))"
- DOVECOT_PASS_FILTER="(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"
- DOVECOT_USER_FILTER="(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"
- ENABLE_SASLAUTHD=1
- SASLAUTHD_MECHANISMS=ldap
- SASLAUTHD_LDAP_SERVER=ldap
- SASLAUTHD_LDAP_BIND_DN=cn=admin,dc=localhost,dc=localdomain
- SASLAUTHD_LDAP_PASSWORD=admin
- SASLAUTHD_LDAP_SEARCH_BASE=ou=people,dc=localhost,dc=localdomain
- [email protected]
cap_add:
- NET_ADMIN
- SYS_PTRACE
volumes:
maildata:
driver: local
mailstate:
driver: local
Please check how the container starts to understand what's expected. Also if an option doesn't work as documented here, check if you are running the latest image!
Value in bold is the default value.
/var/mail-state) to allow persistence using docker volumesIf 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.
Please read the SSL page in the wiki for more information.
Configures the handling of creating mails with forged sender addresses.
Enables the Sender Rewriting Scheme. SRS is needed if your mail server acts as forwarder. See postsrsd for further explanation.
Set different options for mynetworks option (can be overwrite in postfix-main.cf)
Set how many days a virusmail will stay on the server before being deleted
This Option is activating the Usage of POSTFIX_DAGENT to specify a ltmp client different from default dovecot socket.
Enabled by ENABLE_POSTFIX_VIRTUAL_TRANSPORT. Specify the final delivery of postfix
lmtp:unix:private/dovecot-lmtp (use socket)lmtps:inet:<host>:<port> (secure lmtp with starttls, take a look at https://sys4.de/en/blog/2014/11/17/sicheres-lmtp-mit-starttls-in-dovecot/)lmtp:<kopano-host>:2003 (use kopano as mailstore)hostname command to get the mail server's canonical hostnameEnables a report being sent (created by pflogsumm) on a regular basis.
Change the sending address for mail report
changes the interval in which a report is being sent.
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
Note: this spamassassin setting needs ENABLE_SPAMASSASSIN=1
Note: this spamassassin setting needs ENABLE_SPAMASSASSIN=1
Note: this spamassassin setting needs ENABLE_SPAMASSASSIN=1
Note: this spamassassin setting needs ENABLE_SPAMASSASSIN=1
fetchmail disabledfetchmail enabledfetchmail The number of seconds for the interval"(&(mail=%s)(mailEnabled=TRUE))""(&(mailGroupMember=%s)(mailEnabled=TRUE))""(&(mailAlias=%s)(mailEnabled=TRUE))""(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))""(&(objectClass=PostfixBookMailAccount)(uniqueIdentifier=%n))"postgrey is disabledpostgrey is enabledNote: This postgrey setting needs ENABLE_POSTGREY=1
Note: This postgrey setting needs ENABLE_POSTGREY=1
Note: This postgrey setting needs ENABLE_POSTGREY=1
saslauthd is disabledsaslauthd is enabledldap => authenticate against ldap servershadow => authenticate against local user dbmysql => authenticate against mysql dbrimap => authenticate against imap serverldap:// will be usedldaps:// will be used(&(uniqueIdentifier=%u)(mailEnabled=TRUE))(&(sAMAccountName=%U)(objectClass=person))(&(uid=%U)(objectClass=person))/etc/postfix/sasl_passwd will be created with the string as passworddd if=/dev/urandom bs=24 count=1 2>/dev/null | base64Content type
Image
Digest
Size
277 MB
Last updated
over 8 years ago
docker pull thy2134/docker-mailserver