[ci skip] roundcubemail: pin to 1.6-apache, disable debug logging

Pin Roundcubemail to stable 1.6-apache tag instead of :latest to
prevent unexpected breakage. Disable SMTP debug and reduce debug
level from 6 to 1 for production use.
This commit is contained in:
Viktor Barzin 2026-02-23 20:29:39 +00:00
parent b0aaa7b813
commit ed6d505433

View file

@ -57,7 +57,7 @@ resource "kubernetes_deployment" "roundcubemail" {
spec {
container {
name = "roundcube"
image = "roundcube/roundcubemail:latest"
image = "roundcube/roundcubemail:1.6-apache"
# Uncomment me to mount additional settings
# volume_mount {
# name = "imap-config"
@ -111,11 +111,11 @@ resource "kubernetes_deployment" "roundcubemail" {
env {
name = "ROUNDCUBEMAIL_SMTP_DEBUG"
value = "true"
value = "false"
}
env {
name = "ROUNDCUBEMAIL_DEBUG_LEVEL"
value = "6"
value = "1"
}
env {
name = "ROUNDCUBEMAIL_LOG_DRIVER"