Add TLS options for SMTP (#693)

* added smtp security settings for mta

* Update README.md for mailman-core

* change default values according to mailman docs

* added smtp options to README

---------

Co-authored-by: Abhilash Raj <maxking@users.noreply.github.com>
This commit is contained in:
Lucas
2024-06-08 03:04:45 +02:00
committed by GitHub
parent 301aa1f30b
commit 2e164621e8
3 changed files with 26 additions and 0 deletions

View File

@@ -214,6 +214,9 @@ These are the variables that you MUST change in your docker-compose.yaml before
- `SMTP_PORT` : use this port. 25, 587, whatever your host asks for.
- `SMTP_HOST_USER`: authenticate this user
- `SMTP_HOST_PASSWORD`: and use this password
- `SMTP_SECURE_MODE`: security mode for smtp connection - can be `smtp` (no encryption), `smtps` or `starttls`
- `SMTP_VERIFY_HOSTNAME`: defaults to `true` - verify, that certificate hostname is identical to `SMTP_HOST`
- `SMTP_VERIFY_CERT`: defaults to `true` - verify, that certificate is valid
For more details on how to configure this image, please look [Mailman-core's
Readme](core/)