Sogo: change config

This commit is contained in:
Ruben Hensen
2026-01-26 01:11:38 +01:00
parent a6835b3dc4
commit 075db95108
+50 -54
View File
@@ -4,66 +4,62 @@ metadata:
name: sogo-config name: sogo-config
namespace: sogo namespace: sogo
data: data:
sogo.conf: | sogo.yaml: |
{ # Mail Server Configuration
/* Mail Server Configuration */ SOGoIMAPServer: stalwart.stalwart.svc.cluster.local:143
SOGoIMAPServer = "stalwart.stalwart.svc.cluster.local:143"; SOGoSMTPServer: stalwart.stalwart.svc.cluster.local:587
SOGoSMTPServer = "stalwart.stalwart.svc.cluster.local:587"; SOGoMailDomain: hensen.io
SOGoMailDomain = "hensen.io"; SOGoForceIMAPLoginWithEmail: true
SOGoForceIMAPLoginWithEmail = YES;
/* Database Configuration */ # Database Configuration
SOGoProfileURL = "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_user_profile"; 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"; 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"; OCSSessionsFolderURL: "postgresql://sogo:${POSTGRES_PASSWORD}@sogo-postgres-rw.sogo.svc.cluster.local:5432/sogo/sogo_sessions_folder"
/* General Settings */ # General Settings
SOGoTimeZone = "Europe/Amsterdam"; SOGoTimeZone: Europe/Amsterdam
SOGoLanguage = "English"; SOGoLanguage: English
SOGoSuperUsername = "admin@hensen.io"; SOGoSuperUsername: admin@hensen.io
/* Modules */ # Modules
SOGoModules = ( SOGoModules:
"Mail", - Mail
"Calendar", - Calendar
"Contacts", - Contacts
"Tasks" - Tasks
);
/* Calendar Settings */ # Calendar Settings
SOGoCalendarDefaultRoles = ( SOGoCalendarDefaultRoles:
"PublicViewer", - PublicViewer
"ConfidentialDAndTViewer" - ConfidentialDAndTViewer
); SOGoFirstDayOfWeek: 1
SOGoFirstDayOfWeek = 1; SOGoFirstWeekOfYear: January1
SOGoFirstWeekOfYear = "January1"; SOGoDayStartTime: 8
SOGoDayStartTime = 8; SOGoDayEndTime: 18
SOGoDayEndTime = 18;
/* Authentication */ # Authentication
SOGoAuthenticationType = "IMAP"; SOGoAuthenticationType: IMAP
/* WebUI Settings */ # WebUI Settings
SOGoPageTitle = "SOGo @ hensen.io"; SOGoPageTitle: "SOGo @ hensen.io"
SOGoLoginModule = "Mail"; SOGoLoginModule: Mail
SOGoRefreshViewCheck = "every_5_minutes"; SOGoRefreshViewCheck: every_5_minutes
SOGoMailMessageCheck = "every_5_minutes"; SOGoMailMessageCheck: every_5_minutes
/* Mail Preferences */ # Mail Preferences
SOGoMailAuxiliaryUserAccountsEnabled = YES; SOGoMailAuxiliaryUserAccountsEnabled: true
SOGoMailComposeMessageType = "html"; SOGoMailComposeMessageType: html
SOGoMailReplyPlacement = "below"; SOGoMailReplyPlacement: below
SOGoMailSignaturePlacement = "below"; SOGoMailSignaturePlacement: below
/* Security */ # Security
SOGoPasswordChangeEnabled = NO; SOGoPasswordChangeEnabled: false
SOGoXSRFValidationEnabled = YES; SOGoXSRFValidationEnabled: true
/* Performance */ # Performance
SOGoMemcachedHost = ""; SOGoMemcachedHost: ""
WOWorkersCount = 3; WOWorkersCount: 3
WOListenQueueSize = 5; WOListenQueueSize: 5
WONoDetach = YES; WONoDetach: true
WOLogFile = "-"; WOLogFile: "-"
WOPidFile = "/var/run/sogo/sogo.pid"; WOPidFile: /var/run/sogo/sogo.pid
}