{ /* ********************* 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 = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_user_profile"; //OCSFolderInfoURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_folder_info"; //OCSSessionsFolderURL = "postgresql://sogo:sogo@localhost:5432/sogo/sogo_sessions_folder"; SOGoProfileURL = "mysql://sogo:sogo@localhost:3306/sogo/sogo_user_profile"; OCSFolderInfoURL = "mysql://sogo:sogo9@localhost:3306/sogo/sogo_folder_info"; OCSSessionsFolderURL = "mysql://sogo:sogo@localhost:3306/sogo/sogo_sessions_folder"; OCSEMailAlarmsFolderURL = "mysql://sogo:sogo@localhost:3306/sogo/sogo_alarms_folder"; SOGoEnableEMailAlarms = YES; /* Mail */ //SOGoDraftsFolderName = Drafts; //SOGoSentFolderName = Sent; //SOGoTrashFolderName = Trash; //SOGoIMAPServer = localhost; //SOGoSieveServer = sieve://127.0.0.1:4190; //SOGoSMTPServer = 127.0.0.1; //SOGoMailDomain = acme.com; //SOGoMailingMechanism = smtp; //SOGoForceExternalLoginWithEmail = NO; //SOGoMailSpoolPath = /var/spool/sogo; //NGImap4ConnectionStringSeparator = "/"; SOGoJunkFolderName = Spam; SOGoIMAPServer = localhost; SOGoSieveServer = sieve://localhost:4190; SOGoSMTPServer = 127.0.0.1:587; SOGoMailDomain = my.domain; SOGoMailingMechanism = smtp; NGImap4ConnectionStringSeparator = "."; /* Notifications */ //SOGoAppointmentSendEMailNotifications = NO; //SOGoACLsSendEMailNotifications = NO; //SOGoFoldersSendEMailNotifications = NO; /* Authentication */ //SOGoPasswordChangeEnabled = YES; SOGoUserSources = ( { type = sql; id = users; viewURL = "mysql://mail:mail@127.0.0.1:3306/mailing/sogo_view"; canAuthenticate = YES; isAddressBook = NO; displayName = "IOCB local users"; userPasswordAlgorithm = md5-crypt; prependPasswordScheme = YES; LoginFieldNames = (c_uid, c_name, c_userID, mail); MailFieldNames = (mail); }, { type = ldap; id = uochbgroups; CNFieldName = cn; IDFieldName = cn; UIDFieladName = cn; baseDN = "ou=groups,dc=uochb,dc=cas,dc=cz"; bindDN = "uid=admin,ou=Special Users,dc=uochb,dc=cas,dc=cz"; bindPassword = admin; MailFieldNames=(cn,mail); isAddressBook = YES; displayName = "IOCB Groups"; hostname = ldap://147.231.120.8:389?!StartTLS; filter = "(description <> 'Domain*' AND businesscategory <> 'priv' AND description <> 'priv')"; scope = SUB; KindFieldName = "group"; } ); /* Web Interface */ //SOGoPageTitle = SOGo; //SOGoVacationEnabled = YES; //SOGoForwardEnabled = YES; //SOGoSieveScriptsEnabled = YES; //SOGoMailAuxiliaryUserAccountsEnabled = YES; //SOGoTrustProxyAuthentication = NO; //SOGoXSRFValidationEnabled = YES; /* General - SOGoTimeZone *MUST* be defined */ //SOGoLanguage = English; //SOGoTimeZone = America/Montreal; //SOGoCalendarDefaultRoles = ( // PublicDAndTViewer, // ConfidentialDAndTViewer //); SOGoTimeZone = Europe/Prague; SOGoEnablePublicAccess = NO; SOGoCalendarDefaultRoles = ( PublicDAndTViewer, ConfidentialDAndTViewer ); //SOGoSuperUsernames = (sogo1, sogo2); // This is an array - keep the parens! //SxVMemLimit = 384; SxVMemLimit = 1024; //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; }