2015-03-28 15:04:09 +00:00
# docker-mailserver
2016-04-20 08:15:51 +00:00
```
#
# CURRENTLY IN BETA
#
```
[![Build Status ](https://travis-ci.org/tomav/docker-mailserver.svg?branch=v2 )](https://travis-ci.org/tomav/docker-mailserver)
2015-10-18 19:38:22 +00:00
2016-04-21 13:28:23 +00:00
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.
2015-03-28 15:44:40 +00:00
Includes:
2015-03-29 12:07:56 +00:00
2015-03-31 15:28:13 +00:00
- postfix with smtp auth
2016-04-07 12:20:51 +00:00
- dovecot for sasl, imap (and optional pop3) with ssl support
2015-03-31 15:28:13 +00:00
- amavis
2016-02-01 14:05:29 +00:00
- spamassasin supporting custom rules
2015-06-29 12:55:54 +00:00
- clamav with automatic updates
2016-01-20 15:41:34 +00:00
- opendkim
2016-04-21 13:28:23 +00:00
- opendmarc
2016-02-13 11:20:15 +00:00
- fail2ban
2016-01-26 11:56:26 +00:00
- [LetsEncrypt ](https://letsencrypt.org/ ) and self-signed certificates
2016-04-21 13:28:23 +00:00
- [integration tests ](https://travis-ci.org/tomav/docker-mailserver )
2016-02-01 14:05:29 +00:00
- [automated builds on docker hub ](https://hub.docker.com/r/tvial/docker-mailserver/ )
2015-03-28 15:44:40 +00:00
2015-09-12 08:53:59 +00:00
Why I created this image: [Simple mail server with Docker ](http://tvi.al/simple-mail-server-with-docker/ )
2015-08-26 08:05:40 +00:00
2016-04-21 13:28:23 +00:00
Before you open an issue, please have a look this `README` , the [FAQ ](https://github.com/tomav/docker-mailserver/wiki/FAQ ) and Postfix/Dovecot documentation.
2016-04-20 08:15:51 +00:00
## Project architecture
├── config # User: personal configurations
├── docker-compose.yml.dist # User: 'docker-compose.yml' example
2016-04-20 09:40:31 +00:00
├── target # Developer: default server configurations
└── test # Developer: integration tests
2015-03-31 15:28:13 +00:00
2016-04-20 08:15:51 +00:00
## Basic usage
2015-03-28 15:44:40 +00:00
2016-04-20 08:15:51 +00:00
# get v2 image
2016-04-20 09:40:31 +00:00
docker pull tvial/docker-mailserver:v2
2015-03-28 15:04:09 +00:00
2016-04-21 13:28:23 +00:00
# create a "docker-compose.yml" file containing:
2015-12-06 20:12:32 +00:00
mail:
2016-04-20 09:40:31 +00:00
image: tvial/docker-mailserver:v2
2015-12-06 20:12:32 +00:00
hostname: mail
domainname: domain.com
2016-02-01 14:05:29 +00:00
# your FQDN will be 'mail.domain.com'
2015-12-06 20:12:32 +00:00
ports:
2016-04-20 09:40:31 +00:00
- "25:v25"
2015-12-06 20:12:32 +00:00
- "143:143"
- "587:587"
- "993:993"
volumes:
2016-04-20 08:15:51 +00:00
- ./config/:/tmp/docker-mailserver/
# Create your first mail account
2016-04-20 09:40:31 +00:00
# Don't forget to adapt MAIL_USER and MAIL_PASS to your needs
2016-04-20 08:15:51 +00:00
mkdir -p config
docker run --rm \
2016-04-22 22:31:15 +00:00
-e MAIL_USER=user1@domain.tld \
2016-04-20 08:15:51 +00:00
-e MAIL_PASS=mypassword \
-ti tvial/docker-mailserver:v2 \
/bin/sh -c 'echo "$MAIL_USER|$(doveadm pw -s CRAM-MD5 -u $MAIL_USER -p $MAIL_PASS)"' >> config/postfix-accounts.cf
2015-07-16 17:35:11 +00:00
2016-04-07 12:20:51 +00:00
# start the container
2016-04-21 13:29:57 +00:00
docker-compose up -d mail
2016-02-01 14:05:29 +00:00
2016-04-20 08:15:51 +00:00
You're done!
2016-02-01 14:05:29 +00:00
## Managing users and aliases
### Users
2016-04-21 13:28:23 +00:00
As you've seen above, users are managed in `config/postfix-accounts.cf` .
Just add the full email address and its encrypted password separated by a pipe.
2016-02-01 14:05:29 +00:00
Example:
2016-04-22 15:51:14 +00:00
user1@domain.tld|{CRAM-MD5}mypassword-cram-md5-encrypted
user2@otherdomain.tld|{CRAM-MD5}myotherpassword-cram-md5-encrypted
2016-04-07 12:20:51 +00:00
To generate the password you could run for example the following:
2016-04-22 22:31:15 +00:00
docker run --rm \
-e MAIL_USER=user1@domain.tld \
-ti tvial/docker-mailserver:v2 \
/bin/sh -c 'echo "$MAIL_USER|$(doveadm pw -s CRAM-MD5 -u $MAIL_USER )"'
2016-04-07 12:20:51 +00:00
2016-04-22 15:51:14 +00:00
You will be asked for a password. Just copy all the output string in the file `config/postfix-accounts.cf` .
2016-04-07 12:20:51 +00:00
The `doveadm pw` command let you choose between several encryption schemes for the password.
Use doveadm pw -l to get a list of the currently supported encryption schemes.
2016-02-01 14:05:29 +00:00
### Aliases
Please first read [Postfix documentation on virtual aliases ](http://www.postfix.org/VIRTUAL_README.html#virtual_alias ).
2015-07-16 17:35:11 +00:00
2016-04-21 13:28:23 +00:00
Aliases are managed in `config/postfix-virtual.cf` .
2016-02-01 14:05:29 +00:00
An alias is a full email address that will be:
2016-04-20 08:15:51 +00:00
* delivered to an existing account in `config/postfix-accounts.cf`
2016-02-01 14:05:29 +00:00
* redirected to one or more other email adresses
2015-07-16 17:35:11 +00:00
2016-04-21 13:28:23 +00:00
Alias and target are space separated.
2015-08-10 10:20:50 +00:00
2016-02-01 14:05:29 +00:00
Example:
2015-06-29 12:55:54 +00:00
2016-02-01 14:05:29 +00:00
# Alias to existing account
alias1@domain.tld user1@domain.tld
2015-06-29 12:55:54 +00:00
2016-02-01 14:05:29 +00:00
# Forward to external email address
alias2@domain.tld external@gmail.com
2015-12-05 16:32:33 +00:00
2016-02-01 14:05:29 +00:00
## Environment variables
2015-06-29 12:55:54 +00:00
2016-04-22 22:34:03 +00:00
Value in **bold** is the default value.
2016-04-22 22:32:43 +00:00
2016-04-22 22:31:15 +00:00
##### DMS_SSL
- **empty** => SSL disabled
- letsencrypt => Enables Let's Encrypt certificates
- custom => Enables custom certificates
- self-signed => Enables self-signed certificates
##### ENABLE_POP3
- **empty** => POP3 service disabled
- 1 => Enables POP3 service
##### ENABLE_FAIL2BAN
- **empty** => fail2ban service disabled
- 1 => Enables fail2ban service
##### SA_TAG
- **2.0** => add spam info headers if at, or above that level
##### SA_TAG2
- **6.31** => add 'spam detected' headers at that level
##### SA_KILL
- **6.31** => triggers spam evasive actions
##### SASL_PASSWD
- **empty** => No sasl_passwd will be created
2016-04-22 22:35:40 +00:00
- string => `/etc/postfix/sasl_passwd` will be created with the string as password
2016-04-22 22:31:15 +00:00
##### SMTP_ONLY
- **empty** => all daemons start
- 1 => only launch postfix smtp
2016-01-22 14:02:25 +00:00
2016-04-21 13:28:23 +00:00
Please check [how the container starts ](https://github.com/tomav/docker-mailserver/blob/v2/start-mailserver.sh ) to understand what's expected.
2016-02-03 21:45:11 +00:00
2016-04-20 21:01:32 +00:00
## OpenDKIM
You have prepared your mail accounts? Now you can generate DKIM keys using the following command:
docker run --rm \
-v "$(pwd)/config":/tmp/docker-mailserver \
2016-04-21 13:28:23 +00:00
-ti tvial/docker-mailserver:v2 generate-dkim-config
2016-04-20 21:01:32 +00:00
2016-04-22 22:31:15 +00:00
Don't forget to mount `config/opendkim/` to `/tmp/docker-mailserver/opendkim/` in order to use it.
2016-04-20 21:01:32 +00:00
Now the keys are generated, you can configure your DNS server by just pasting the content of `config/opedkim/keys/domain.tld/mail.txt` in your `domain.tld.hosts` zone.
2016-02-01 14:05:29 +00:00
## SSL
2016-01-22 14:02:25 +00:00
2016-02-10 08:53:51 +00:00
Please read [the SSL page in the wiki ](https://github.com/tomav/docker-mailserver/wiki/SSL ) for more information.
2016-01-22 14:02:25 +00:00
2016-02-01 14:05:29 +00:00
## Todo
2015-03-31 20:21:44 +00:00
2016-04-20 08:15:51 +00:00
Things to do or to improve are stored on [Github ](https://github.com/tomav/docker-mailserver/issues ).
2015-03-31 20:21:44 +00:00
Feel free to improve this docker image.
2016-02-04 07:51:07 +00:00
## Contribute
- Fork
- Improve
2016-02-25 11:15:33 +00:00
- Add integration tests in `test/tests.bats`
2016-04-21 13:28:23 +00:00
- Build image and run tests using `make`
2016-02-04 07:51:07 +00:00
- Document your improvements
- Commit, push and make a pull-request