[bitnami/matomo] Fix SMTP authentication type allowed values (typo for Cram-md5) (#78626)

Fix SMTP authentication type allowed values (Cram-md5)

Signed-off-by: Alexandre GERARD <alexandre.gerard@aloene.com>
Co-authored-by: Alexandre GERARD <agerard@icrc.org>
This commit is contained in:
Alexandre GERARD
2025-03-11 12:16:22 +01:00
committed by GitHub
parent c65b3e74ed
commit d901c3cd9d
2 changed files with 2 additions and 2 deletions

View File

@@ -82,7 +82,7 @@ matomo_validate() {
is_empty_value "$MATOMO_SMTP_PORT_NUMBER" && print_validation_error "The MATOMO_SMTP_PORT_NUMBER environment variable is empty or not set."
! is_empty_value "$MATOMO_SMTP_PORT_NUMBER" && check_valid_port "MATOMO_SMTP_PORT_NUMBER"
! is_empty_value "$MATOMO_SMTP_PROTOCOL" && check_multi_value "MATOMO_SMTP_PROTOCOL" "ssl tls none"
! is_empty_value "$MATOMO_SMTP_AUTH" && check_multi_value "MATOMO_SMTP_AUTH" "Plain Login Crammd5"
! is_empty_value "$MATOMO_SMTP_AUTH" && check_multi_value "MATOMO_SMTP_AUTH" "Plain Login Cram-md5"
fi
# Check that the web server is properly set up

View File

@@ -301,7 +301,7 @@ Bitnami provides up-to-date versions of MariaDB and Matomo, including security p
| `MATOMO_SMTP_PORT_NUMBER` | Matomo SMTP server port number. | `nil` |
| `MATOMO_SMTP_USER` | Matomo SMTP server user. | `nil` |
| `MATOMO_SMTP_PASSWORD` | Matomo SMTP server user password. | `nil` |
| `MATOMO_SMTP_AUTH` | Matomo SMTP server auth type | `nil` |
| `MATOMO_SMTP_AUTH` | Matomo SMTP server auth type (Plain, Login or Cram-md5) | `nil` |
| `MATOMO_SMTP_PROTOCOL` | Matomo SMTP server protocol to use. | `nil` |
| `MATOMO_NOREPLY_NAME` | Matomo noreply name. | `nil` |
| `MATOMO_NOREPLY_ADDRESS` | Matomo noreply address. | `nil` |