1
0
mirror of https://github.com/tomav/docker-mailserver.git synced 2024-06-28 20:21:14 +02:00
docker-mailserver/README.md
2015-03-31 22:21:44 +02:00

54 lines
1.2 KiB
Markdown

# docker-mailserver
A fullstack but simple mail server (smtp, imap, antispam, antivirus...)
Includes:
- postfix with smtp auth
- courier-imap with ssl support
- amavis
- spamassasin
- clamav
Additional informations:
- only config files, no *sql database required
- mails are stored in `/var/mail/${domain}/${username}`
- email login are full email address (`username1@my-domain.com`)
- ssl is strongly recommended
## installation
docker pull tvial/docker-mailserver
## build
docker build -t tvial/docker-mailserver .
## docker-compose template
mail:
build: .
# or use 'image: tvial/docker-mailserver'
hostname: mail
domainname: my-domain.com
ports:
- "25:25"
- "143:143"
- "587:587"
- "993:993"
environment:
docker_mail_domain: "my-domain.com"
# format is user@domain.tld|clear_password
docker_mail_users:
- "username1@my-domain.com|username1password"
- "username2@my-domain.com|username2password"
# 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.
# wanna help?
Fork, improve and PR. ;-)