mirror of
https://github.com/YunoHost-Apps/sogo_ynh.git
synced 2024-09-03 20:26:07 +02:00
cleaner Sogo Conf
This commit is contained in:
parent
e9a8a62627
commit
bda6e61a89
1 changed files with 18 additions and 75 deletions
|
@ -1,47 +1,24 @@
|
|||
{
|
||||
/* ********************* Main SOGo configuration file **********************
|
||||
* *
|
||||
* Since the content of this file is a dictionary in OpenStep plist format, *
|
||||
* the curly braces enclosing the body of the configuration are mandatory. *
|
||||
* See the Installation Guide for details on the format. *
|
||||
* *
|
||||
* C and C++ style comments are supported. *
|
||||
* *
|
||||
* This example configuration contains only a subset of all available *
|
||||
* configuration parameters. Please see the installation guide more details. *
|
||||
* *
|
||||
* ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file, *
|
||||
* make sure to move it away to avoid unwanted parameter overrides. *
|
||||
* *
|
||||
* **************************************************************************/
|
||||
|
||||
/* Database configuration (mysql:// or postgresql://) */
|
||||
SOGoProfileURL = "mysql://DBUSER:DBPASS@localhost:3306/sogo/sogo_user_profile";
|
||||
OCSFolderInfoURL = "mysql://DBUSER:DBPASS@localhost:3306/sogo/sogo_folder_info";
|
||||
OCSSessionsFolderURL = "mysql://DBUSER:DBPASS@localhost:3306/sogo/sogo_sessions_folder";
|
||||
|
||||
/* Mail */
|
||||
SOGoDraftsFolderName = Drafts;
|
||||
SOGoProfileURL = "mysql://sogo:98b5c4632759e46ba534eae1ce73fe@localhost:3306/sogo/sogo_user_profile";
|
||||
OCSFolderInfoURL = "mysql://sogo:98b5c4632759e46ba534eae1ce73fe@localhost:3306/sogo/sogo_folder_info";
|
||||
OCSSessionsFolderURL = "mysql://sogo:98b5c4632759e46ba534eae1ce73fe@localhost:3306/sogo/sogo_sessions_folder";
|
||||
SOGoLanguage = English;
|
||||
SOGoAppointmentSendEMailNotifications = YES;
|
||||
SOGoEnablePublicAccess = YES;
|
||||
SOGoMailingMechanism = smtp;
|
||||
SOGoSMTPServer = 127.0.0.1;
|
||||
SOGoTimeZone = UTC;
|
||||
SOGoSentFolderName = Sent;
|
||||
SOGoTrashFolderName = Trash;
|
||||
SOGoIMAPServer = imaps://localhost:993;
|
||||
SOGoSMTPServer = 127.0.0.1;
|
||||
//SOGoMailDomain = example.com;
|
||||
//SOGoMailingMechanism = smtp;
|
||||
//SOGoForceExternalLoginWithEmail = NO;
|
||||
//SOGoMailSpoolPath = /var/spool/sogo;
|
||||
//NGImap4ConnectionStringSeparator = "/";
|
||||
SOGoEnablePublicAccess = YES;
|
||||
|
||||
|
||||
/* Notifications */
|
||||
//SOGoAppointmentSendEMailNotifications = NO;
|
||||
SOGoACLsSendEMailNotifications = YES;
|
||||
//SOGoFoldersSendEMailNotifications = NO;
|
||||
|
||||
/* Authentication */
|
||||
//SOGoPasswordChangeEnabled = YES;
|
||||
|
||||
SOGoDraftsFolderName = Drafts;
|
||||
SOGoIMAPServer = "imaps://localhost:993/";
|
||||
SOGoIMAPAclConformsToIMAPExt = YES;
|
||||
SOGoVacationEnabled = NO;
|
||||
SOGoForwardEnabled = NO;
|
||||
SOGoSieveScriptsEnabled = NO;
|
||||
SOGoFirstDayOfWeek = 0;
|
||||
SOGoMailMessageCheck = manually;
|
||||
SOGoMailAuxiliaryUserAccountsEnabled = NO;
|
||||
/* LDAP authentication example */
|
||||
SOGoUserSources = (
|
||||
{
|
||||
|
@ -51,8 +28,6 @@
|
|||
IDFieldName = uid; // first field of the DN for direct binds
|
||||
bindFields = (uid, mail); // array of fields to use for indirect binds
|
||||
baseDN = "dc=yunohost,dc=org";
|
||||
//bindDN = "cn=admin,dc=yunohost,dc=org";
|
||||
//bindPassword = ;
|
||||
canAuthenticate = YES;
|
||||
displayName = "Address Book";
|
||||
hostname = ldap://localhost:389;
|
||||
|
@ -61,37 +36,5 @@
|
|||
}
|
||||
);
|
||||
|
||||
/* Web Interface */
|
||||
SOGoPageTitle = SOGo Webmail;
|
||||
//SOGoVacationEnabled = YES;
|
||||
//SOGoForwardEnabled = YES;
|
||||
//SOGoSieveScriptsEnabled = YES;
|
||||
SOGoMailAuxiliaryUserAccountsEnabled = YES;
|
||||
//SOGoTrustProxyAuthentication = NO;
|
||||
|
||||
/* General */
|
||||
SOGoLanguage = English;
|
||||
SOGoTimeZone = Europe/Amsterdam;
|
||||
//SOGoCalendarDefaultRoles = (
|
||||
// PublicDAndTViewer,
|
||||
// ConfidentialDAndTViewer
|
||||
//);
|
||||
SOGoSuperUsernames = (ADMINUSER); // This is an array - keep the parens!
|
||||
//SxVMemLimit = 384;
|
||||
//WOPidFile = "/var/run/sogo/sogo.pid";
|
||||
//SOGoMemcachedHost = "/var/run/memcached.sock";
|
||||
|
||||
/* Debug */
|
||||
//SOGoDebugRequests = YES;
|
||||
//SoDebugBaseURL = YES;
|
||||
//ImapDebugEnabled = YES;
|
||||
//LDAPDebugEnabled = YES;
|
||||
//PGDebugEnabled = YES;
|
||||
//MySQL4DebugEnabled = YES;
|
||||
//SOGoUIxDebugEnabled = YES;
|
||||
//WODontZipResponse = YES;
|
||||
//WOLogFile = /var/log/sogo/sogo.log;
|
||||
WOWorkersCount = 10;
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue