From 236d66765aa5c5efbb3524d0ad5f0ee6874d1c58 Mon Sep 17 00:00:00 2001 From: Ruben Hensen Date: Mon, 26 Jan 2026 01:46:08 +0100 Subject: [PATCH] sogo ssldisable --- sogo/configmap.yaml | 8 ++++---- sogo/postgresql-cluster.yaml | 1 + 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/sogo/configmap.yaml b/sogo/configmap.yaml index a0f8559..200bb6c 100644 --- a/sogo/configmap.yaml +++ b/sogo/configmap.yaml @@ -12,10 +12,10 @@ data: SOGoForceIMAPLoginWithEmail: true # Database Configuration - SOGoProfileURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_user_profile" - OCSFolderInfoURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_folder_info" - OCSSessionsFolderURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_sessions_folder" - OCSAclURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_acl" + SOGoProfileURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_user_profile?sslmode=disable" + OCSFolderInfoURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_folder_info?sslmode=disable" + OCSSessionsFolderURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_sessions_folder?sslmode=disable" + OCSAclURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_acl?sslmode=disable" # General Settings SOGoTimeZone: Europe/Amsterdam diff --git a/sogo/postgresql-cluster.yaml b/sogo/postgresql-cluster.yaml index e2394e7..dbe0ae0 100644 --- a/sogo/postgresql-cluster.yaml +++ b/sogo/postgresql-cluster.yaml @@ -23,3 +23,4 @@ spec: parameters: max_connections: "100" shared_buffers: "256MB" + ssl: "off"