Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- {
- /* ********************* 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://*/sogo/sogo_user_profile";
- OCSFolderInfoURL = "mysql://*/sogo/sogo_folder_info";
- OCSSessionsFolderURL = "mysql://*/sogo/sogo_sessions_folder";
- /* Mail */
- SOGoDraftsFolderName = INBOX/Drafts;
- SOGoSentFolderName = INBOX/Sent;
- SOGoTrashFolderName = INBOX/Trash;
- SOGoIMAPServer = 10.3.2.4:10143;
- //SOGoSieveServer = sieve://127.0.0.1:4190;
- SOGoSMTPServer = mia1-node.supramail.com.br;
- SOGoSMTPAuthenticationType = "PLAIN";
- //SOGoMailDomain = acme.com;
- SOGoMailingMechanism = smtp;
- SOGoForceExternalLoginWithEmail = YES;
- //SOGoMailSpoolPath = /var/spool/sogo;
- //NGImap4ConnectionStringSeparator = "/";
- /* Notifications */
- //SOGoAppointmentSendEMailNotifications = NO;
- //SOGoACLsSendEMailNotifications = NO;
- //SOGoFoldersSendEMailNotifications = NO;
- /* Authentication */
- SOGoPasswordChangeEnabled = NO;
- /* SQL authentication example */
- /* These database columns MUST be present in the view/table:
- * c_uid - will be used for authentication - it's the username or [email protected])
- * c_name - which can be identical to c_uid - will be used to uniquely identify entries
- * c_password - password of the user, plain-text, md5 or sha encoded for now
- * c_cn - the user's common name - such as "John Doe"
- * mail - the user's mail address
- * See the installation guide for more details
- */
- SOGoUserSources =
- (
- {
- type = sql;
- id = global;
- viewURL = "mysql://*/sogo/sogo_view";
- canAuthenticate = YES;
- isAddressBook = YES;
- userPasswordAlgorithm = crypt;
- displayName = "Global";
- }
- );
- /* Web Interface */
- SOGoVacationEnabled = NO;
- SOGoForwardEnabled = NO;
- SOGoSieveScriptsEnabled = NO;
- SOGoMailAuxiliaryUserAccountsEnabled = NO;
- SOGoMailComposeMessageType = html;
- SOGoMaximumSyncWindowSize = 256;
- SOGoMaximumSyncResponseSize = 5172;
- SOGoEASDebugEnabled = NO;
- SOGoMaximumPingInterval = 1740;
- SOGoMaximumSyncInterval = 1740;
- SOGoInternalSyncInterval = 60;
- WOWatchDogRequestTimeout = 35;
- //SOGoTrustProxyAuthentication = NO;
- /* General */
- SOGoLanguage = BrazilianPortuguese;
- SOGoTimeZone = America/Sao_Paulo;
- //SOGoCalendarDefaultRoles = (
- // PublicDAndTViewer,
- // ConfidentialDAndTViewer
- //);
- //WOPidFile = "/var/run/sogo/sogo.pid";
- SOGoMemcachedHost = "localhost";
- SOGoCalendarDefaultRoles = ("ObjectCreator", "PublicViewer");
- /* Debug */
- //SOGoDebugRequests = YES;
- //SoDebugBaseURL = YES;
- //ImapDebugEnabled = YES;
- //LDAPDebugEnabled = YES;
- //PGDebugEnabled = YES;
- //MySQL4DebugEnabled = YES;
- //SOGoUIxDebugEnabled = YES;
- //WODontZipResponse = YES;
- WOLogFile = /var/log/sogo/sogo.log;
- }
Advertisement
Add Comment
Please, Sign In to add comment