1
1
mirror of https://github.com/docker-mailserver/docker-mailserver synced 2024-09-29 11:41:18 +02:00

Addded example for overriding postfix-master.cf

This commit is contained in:
Erik Wramner 2019-11-10 10:10:32 +01:00
parent 2ebea365e6
commit ff83bf1a01

@ -13,4 +13,10 @@ That specific example is now supported and can be handled by setting POSTFIX_MES
Each line in the provided file will be loaded into postfix.
In the same way it is possible to add a custom `config/postfix-master.cf` file that will override the standard `master.cf`. Each line in the file will be passed to `postconf -P`. The expected format is service_name/type/parameter, for example:
```
submission/inet/smtpd_reject_unlisted_recipient=no
```
Run `postconf -P` in the container without arguments to see the active master options.
Have a look at the code for more information.