Update readme and changelog about the ports and usage (#848)

This commit is contained in:
Johan Smits 2018-02-18 13:12:39 +01:00 committed by GitHub
parent 795cbf103d
commit 803dab12c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 0 deletions

View File

@ -1,5 +1,9 @@
# Changelog
## 3b7fc5930ce0b9f00f27600fbb72c3cfa3d97571 #799 (2018-02-04)
* Introduced Postscreen
* Breaks email submission on port 25. Sending emails should be done on port 465 or 587
## 2.0.0 (2016-05-09)
* New version
* Major redesign of configuration

View File

@ -89,6 +89,17 @@ Your config folder will be mounted in `/tmp/docker-mailserver/`. To understand h
`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.
#### Exposed ports
* 25 receiving email from other mailservers
* 465 SSL Client email submission
* 587 TLS Client email submission
* 143 StartTLS IMAP client
* 993 TLS/SSL IMAP client
* 110 POP3 client
* 995 TLS/SSL POP3 client
`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.`
##### Examples with just the relevant environmental variables:
```yaml