mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
Document plus addressing and DEFAULT_RELAY_HOST format
These are a couple of things that work but got me losing lots of hours. Let me add them to README: 1. Fix #1330 explaining that plus addressing works out of the box. 2. Explain that DEFAULT_RELAY_HOST will fail to authenticate with RELAY_USER and RELAY_PASSWORD if you forgot the brackets. @Tecnativa TT20505
This commit is contained in:
parent
2bb1a753e7
commit
ce8c1734e6
|
@ -28,6 +28,8 @@ Includes:
|
|||
- persistent data and state (but think about backups!)
|
||||
- [Integration tests](https://travis-ci.org/tomav/docker-mailserver)
|
||||
- [Automated builds on docker hub](https://hub.docker.com/r/tvial/docker-mailserver/)
|
||||
- Plus addressing (a.k.a. [extension delimiters](http://www.postfix.org/postconf.5.html#recipient_delimiter))
|
||||
works out of the box: email for `you+extension@example.com` go to `you@example.com`
|
||||
|
||||
Why I created this image: [Simple mail server with Docker](http://tvi.al/simple-mail-server-with-docker/)
|
||||
|
||||
|
@ -683,7 +685,9 @@ Note: This postgrey setting needs `ENABLE_POSTGREY=1`
|
|||
#### DEFAULT_RELAY_HOST
|
||||
|
||||
- **empty** => don't set default relayhost setting in main.cf
|
||||
- default host and port to relay all mail through
|
||||
- default host and port to relay all mail through.
|
||||
Format: `[example.com]:587` (don't forget the brackets if you need this to
|
||||
be compatible with `$RELAY_USER` and `$RELAY_PASSWORD`, explained below).
|
||||
|
||||
## Multi-domain Relay Hosts
|
||||
|
||||
|
|
Loading…
Reference in a new issue