mirror of
https://github.com/rubenhensen/k8scd.git
synced 2026-09-18 10:32:55 +02:00
Sogo: change config
This commit is contained in:
+50
-54
@@ -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
|
||||||
}
|
|
||||||
|
|||||||
Reference in New Issue
Block a user