mirror of
https://github.com/simple-login/app.git
synced 2025-02-23 23:34:05 +08:00
Enable TLS on Postfix submission
This commit is contained in:
parent
9237f43c19
commit
2e6c22131f
1 changed files with 15 additions and 0 deletions
15
README.md
15
README.md
|
@ -428,6 +428,21 @@ Finally, restart Postfix
|
|||
sudo systemctl restart postfix
|
||||
```
|
||||
|
||||
#### [Optional] Enable TLS on Postfix submission
|
||||
|
||||
In case your Postfix server is on another server, it's recommended to enable TLS on Postfix submission to
|
||||
secure the connection between SimpleLogin email handler and Postfix.
|
||||
|
||||
This can be enabled by adding those lines at the end of `/etc/postfix/master.cf`
|
||||
|
||||
```
|
||||
submission inet n - y - - smtpd
|
||||
-o syslog_name=postfix/submission
|
||||
-o smtpd_tls_security_level=encrypt
|
||||
-o smtpd_sasl_auth_enable=yes
|
||||
-o smtpd_tls_auth_only=yes
|
||||
```
|
||||
|
||||
|
||||
### Run SimpleLogin Docker containers
|
||||
|
||||
|
|
Loading…
Reference in a new issue