Improved documentation (added client configuration)

This commit is contained in:
Thomas VIAL 2015-06-29 14:55:54 +02:00
parent 72d10ea14d
commit 1e19ca515e
1 changed files with 24 additions and 3 deletions

View File

@ -1,6 +1,8 @@
# docker-mailserver
A fullstack but simple mail server (smtp, imap, antispam, antivirus...)
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:
@ -8,7 +10,7 @@ Includes:
- courier-imap with ssl support
- amavis
- spamassasin
- clamav
- clamav with automatic updates
Additional informations:
@ -52,6 +54,25 @@ Additional informations:
- "username1@my-domain.com|alias1,alias2,alias3"
- "username2@my-domain.com|alias4"
# usage
docker-compose up -d mail
# client configuration
# imap
username: <username1@my-domain.com>
password: <username1password>
server: <your-server-ip-or-hostname>
imap port: 143 or 993 with ssl (recommended)
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
# todo
Things to do or to improve are stored on [Github](https://github.com/tomav/docker-mailserver/issues), some open by myself.
@ -59,4 +80,4 @@ Feel free to improve this docker image.
# wanna help?
Fork, improve and PR. ;-)
Fork, improve and PR. ;-)