[bitnami/redmine] Release redmine-6.0.2-debian-12-r1 (#76171)

Signed-off-by: Bitnami Bot <bitnami-bot@vmware.com>
This commit is contained in:
Bitnami Bot
2025-01-11 02:41:57 +01:00
committed by GitHub
parent fb9f08c12d
commit 3dd313f85f
4 changed files with 9 additions and 4 deletions

View File

@@ -8,11 +8,11 @@ ARG TARGETARCH
LABEL com.vmware.cp.artifact.flavor="sha256:c50c90cfd9d12b445b011e6ad529f1ad3daea45c26d20b00732fae3cd71f6a83" \
org.opencontainers.image.base.name="docker.io/bitnami/minideb:bookworm" \
org.opencontainers.image.created="2024-12-11T23:59:39Z" \
org.opencontainers.image.created="2025-01-11T01:13:26Z" \
org.opencontainers.image.description="Application packaged by Broadcom, Inc." \
org.opencontainers.image.documentation="https://github.com/bitnami/containers/tree/main/bitnami/redmine/README.md" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.ref.name="6.0.2-debian-12-r0" \
org.opencontainers.image.ref.name="6.0.2-debian-12-r1" \
org.opencontainers.image.source="https://github.com/bitnami/containers/tree/main/bitnami/redmine" \
org.opencontainers.image.title="redmine" \
org.opencontainers.image.vendor="Broadcom, Inc." \

View File

@@ -174,7 +174,7 @@ redmine_initialize() {
redmine_conf_set "default.email_delivery.smtp_settings.user_name" "$REDMINE_SMTP_USER"
redmine_conf_set "default.email_delivery.smtp_settings.password" "$REDMINE_SMTP_PASSWORD"
# Remove 'USER@' part from e-mail address and use as domain
redmine_conf_set "default.email_delivery.smtp_settings.domain" "${REDMINE_SMTP_USER//*@/}"
redmine_conf_set "default.email_delivery.smtp_settings.domain" "${REDMINE_SMTP_DOMAIN:-${REDMINE_SMTP_USER//*@/}}"
redmine_conf_set "default.email_delivery.smtp_settings.openssl_verify_mode" "$REDMINE_SMTP_OPENSSL_VERIFY_MODE"
redmine_conf_set "default.email_delivery.smtp_settings.ca_file" "$REDMINE_SMTP_CA_FILE"
if [[ "$REDMINE_SMTP_PROTOCOL" = "tls" ]]; then

View File

@@ -40,6 +40,7 @@ redmine_env_vars=(
REDMINE_SMTP_HOST
REDMINE_SMTP_PORT_NUMBER
REDMINE_SMTP_USER
REDMINE_SMTP_DOMAIN
REDMINE_SMTP_PASSWORD
REDMINE_SMTP_PROTOCOL
REDMINE_SMTP_AUTH
@@ -55,6 +56,7 @@ redmine_env_vars=(
SMTP_PORT
REDMINE_SMTP_PORT
SMTP_USER
SMTP_DOMAIN
SMTP_PASSWORD
SMTP_PROTOCOL
SMTP_AUTHENTICATION
@@ -121,6 +123,8 @@ REDMINE_SMTP_PORT_NUMBER="${REDMINE_SMTP_PORT_NUMBER:-"${REDMINE_SMTP_PORT:-}"}"
export REDMINE_SMTP_PORT_NUMBER="${REDMINE_SMTP_PORT_NUMBER:-}" # only used during the first initialization
REDMINE_SMTP_USER="${REDMINE_SMTP_USER:-"${SMTP_USER:-}"}"
export REDMINE_SMTP_USER="${REDMINE_SMTP_USER:-}" # only used during the first initialization
REDMINE_SMTP_DOMAIN="${REDMINE_SMTP_DOMAIN:-"${SMTP_DOMAIN:-}"}"
export REDMINE_SMTP_DOMAIN="${REDMINE_SMTP_DOMAIN:-}" # only used during the first initialization
REDMINE_SMTP_PASSWORD="${REDMINE_SMTP_PASSWORD:-"${SMTP_PASSWORD:-}"}"
export REDMINE_SMTP_PASSWORD="${REDMINE_SMTP_PASSWORD:-}" # only used during the first initialization
REDMINE_SMTP_PROTOCOL="${REDMINE_SMTP_PROTOCOL:-"${SMTP_PROTOCOL:-}"}"