docker-mailserver/README.md

119 lines
3.5 KiB
Markdown
Raw Normal View History

2015-03-28 16:04:09 +01:00
# docker-mailserver
2015-06-29 14:57:08 +02: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 16:44:40 +01:00
Includes:
2015-03-29 14:07:56 +02:00
2015-03-31 17:28:13 +02:00
- postfix with smtp auth
- courier-imap with ssl support
2015-03-31 17:28:13 +02:00
- amavis
2015-03-28 16:44:40 +01:00
- spamassasin
- clamav with automatic updates
2015-03-28 16:44:40 +01:00
2015-03-31 17:28:13 +02:00
Additional informations:
- only config files, no *sql database required
- mails are stored in `/var/mail/${domain}/${username}`
- you should use a data volume container for `/var/mail` for data persistence
- email login are full email address (`username1@my-domain.com`)
2015-07-27 10:00:53 +02:00
- user accounts are managed in `./postfix/accounts.cf`
2015-08-10 12:20:50 +02:00
- aliases and fowards/redirects are managed in `./postfix/virtual`
2015-08-19 15:59:04 +02:00
- antispam rules are managed in `./spamassassin/rules.cf`
2015-08-05 13:35:22 +02:00
- files must be mounted to `/tmp` in your container (see `docker-compose.yml` template)
2015-08-19 16:13:56 +02:00
- ssl is strongly recommended, you can provide a self-signed certificate, see below
2015-03-28 16:44:40 +01:00
2015-03-28 16:04:09 +01:00
## installation
2015-03-28 16:44:40 +01:00
docker pull tvial/docker-mailserver
2015-03-28 16:04:09 +01:00
## build
docker build -t tvial/docker-mailserver .
## run
docker run --name mail -v "$(pwd)/postfix":/tmp/postfix -v "$(pwd)/spamassassin":/tmp/spamassassin -p "25:25" -p "143:143" -p "587:587" -p "993:993" -h mail.my-domain.com -t tvial/docker-mailserver
## docker-compose template (recommended)
2015-03-28 16:04:09 +01:00
mail:
# image: tvial/docker-mailserver
build: .
2015-03-28 16:04:09 +01:00
hostname: mail
domainname: my-domain.com
ports:
- "25:25"
- "143:143"
- "587:587"
- "993:993"
volumes:
- ./spamassassin:/tmp/spamassassin/
- ./postfix:/tmp/postfix/
Volumes allow to:
- Insert custom antispam rules
- Manage mail users, passwords and aliases
2015-08-19 16:13:56 +02:00
- Manage SSL certificates
# usage
2015-08-10 12:20:50 +02:00
docker-compose up -d mail
# configure ssl
## generate self-signed ssl certificate
You can easily generate a self-signed SSL certificate by using the following command:
docker run -ti --rm -v "$(pwd)"/postfix/ssl:/ssl -h mail.my-domain.com -t tvial/docker-mailserver generate-ssl-certificate
2015-08-18 20:49:49 +02:00
# Press enter
# Enter a password when needed
# Fill information like Country, Organisation name
# Fill "mail.my-domain.com" as FQDN
# Don't fill extras
# Enter same password when needed
# Sign the certificate? [y/n]:y
# 1 out of 1 certificate requests certified, commit? [y/n]y
# will generate:
2015-08-18 20:49:49 +02:00
# postfix/ssl/mail.my-domain.com-key.pem (used in postfix)
# postfix/ssl/mail.my-domain.com-req.pem (only used to generate other files)
2015-08-18 20:49:49 +02:00
# postfix/ssl/mail.my-domain.com-cert.pem (used in postfix)
# postfix/ssl/mail.my-domain.com-combined.pem (used in courier)
# postfix/ssl/demoCA/cacert.pem (certificate authority)
Note that the certificate will be generate for the container `fqdn`, that is passed as `-h` argument.
## configure ssl certificate (convention over configuration)
If a matching certificate (files listed above) is found in `postfix/ssl`, it will be automatically setup in postfix and courier-imap-ssl. You just have to place them in `postfix/ssl` folder.
# client configuration
# imap
username: <username1@my-domain.com>
password: <username1password>
server: <your-server-ip-or-hostname>
imap port: 143 or 993 with ssl (recommended)
2015-07-01 14:10:52 +02:00
imap path prefix: INBOX
auth method: md5 challenge-response
# smtp
smtp port: 25 or 587 with ssl (recommended)
username: <username1@my-domain.com>
password: <username1password>
auth method: md5 challenge-response
2015-03-31 22:21:44 +02:00
# todo
Things to do or to improve are stored on [Github](https://github.com/tomav/docker-mailserver/issues), some open by myself.
Feel free to improve this docker image.
2015-03-28 16:44:40 +01:00
# wanna help?
Fork, improve and PR. ;-)