mirror of
https://github.com/bitnami/containers.git
synced 2026-02-10 21:27:26 +08:00
[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:
@@ -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
|
||||
|
||||
@@ -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` |
|
||||
|
||||
Reference in New Issue
Block a user