From ed6d505433f2d78c9837dc31377efd888cc23de9 Mon Sep 17 00:00:00 2001 From: Viktor Barzin Date: Mon, 23 Feb 2026 20:29:39 +0000 Subject: [PATCH] [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. --- stacks/platform/modules/mailserver/roundcubemail.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/stacks/platform/modules/mailserver/roundcubemail.tf b/stacks/platform/modules/mailserver/roundcubemail.tf index cd4b5a4f..80bb6e18 100644 --- a/stacks/platform/modules/mailserver/roundcubemail.tf +++ b/stacks/platform/modules/mailserver/roundcubemail.tf @@ -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"