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"