Merge branch 'main' into dependabot/docker/core/alpine-3.20

This commit is contained in:
Abhilash Raj
2024-06-17 22:20:37 +05:30
committed by GitHub
8 changed files with 35 additions and 9 deletions

View File

@@ -60,6 +60,8 @@ standard version of docker-compose.yaml from this repository.
- `SMTP_PORT`: Port used for SMTP. Default is `25`.
- `SMTP_SECURE_MODE`: Security mode (encryption) used for SMTP. Default is `smtp`. Can also be `starttls` or `smtps`.
- `HYPERKITTY_URL`: Default value is `http://mailman-web:8000/hyperkitty`
In case of a need for fine tuning of REST API web-server that uses [Gunicorn](https://docs.gunicorn.org/en/stable/settings.html) (e.g. for raising of timeouts) `/opt/mailman/core/gunicorn-extra.cfg` file could be provided holding necessary configuration options.
@@ -106,6 +108,9 @@ lmtp_host: $MM_HOSTNAME
lmtp_port: 8024
smtp_host: $SMTP_HOST
smtp_port: $SMTP_PORT
smtp_secure_mode: $SMTP_SECURE_MODE
smtp_verify_hostname: $SMTP_VERIFY_HOSTNAME
smtp_verify_cert: $SMTP_VERIFY_CERT
configuration: python:mailman.config.exim4
[runner.retry]

View File

@@ -43,6 +43,18 @@ if [[ ! -v SMTP_PORT ]]; then
export SMTP_PORT=25
fi
if [[ ! -v SMTP_SECURE_MODE ]]; then
export SMTP_SECURE_MODE="smtp"
fi
if [[ ! -v SMTP_VERIFY_HOSTNAME ]]; then
export SMTP_VERIFY_HOSTNAME="true"
fi
if [[ ! -v SMTP_VERIFY_CERT ]]; then
export SMTP_VERIFY_CERT="true"
fi
# Check if REST port, username, and password are set, if not, set them
# to default values.
if [[ ! -v MAILMAN_REST_PORT ]]; then
@@ -144,6 +156,9 @@ smtp_host: $SMTP_HOST
smtp_port: $SMTP_PORT
smtp_user: $SMTP_HOST_USER
smtp_pass: $SMTP_HOST_PASSWORD
smtp_secure_mode: $SMTP_SECURE_MODE
smtp_verify_hostname: $SMTP_VERIFY_HOSTNAME
smtp_verify_cert: $SMTP_VERIFY_CERT
configuration: python:mailman.config.exim4
EOF
@@ -167,6 +182,9 @@ smtp_host: $SMTP_HOST
smtp_port: $SMTP_PORT
smtp_user: $SMTP_HOST_USER
smtp_pass: $SMTP_HOST_PASSWORD
smtp_secure_mode: $SMTP_SECURE_MODE
smtp_verify_hostname: $SMTP_VERIFY_HOSTNAME
smtp_verify_cert: $SMTP_VERIFY_CERT
configuration: /etc/postfix-mailman.cfg
EOF