{ /* ********************* 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@pmj-bd06:3306/sogo/sogo_user_profile"; OCSFolderInfoURL = "mysql://sogo:sogo@pmj-bd06:3306/sogo/sogo_folder_info"; OCSSessionsFolderURL = "mysql://sogo:sogo@pmj-bd06:3306/sogo/sogo_sessions_folder"; /* Mail */ SOGoDraftsFolderName = Drafts; SOGoSentFolderName = Sent; SOGoTrashFolderName = Trash; SOGoIMAPServer = mail2.joinville.sc.gov.br; //SOGoSieveServer = sieve://127.0.0.1:4190; SOGoSMTPServer = mail2.joinville.sc.gov.br; SOGoMailDomain = joinville.sc.gov.br; SOGoMailingMechanism = smtp; //SOGoForceExternalLoginWithEmail = NO; //SOGoMailSpoolPath = /var/spool/sogo; NGImap4ConnectionStringSeparator = "/"; // SOGoMaximumMessagesSubmissionCount = 0; // SOGoMaximumRecipientCount = 20; // SOGoMaximumSubmissionInterval = 0; // SOGoMaximumSubmissionBlockInterval = 0; /* Notifications */ SOGoAppointmentSendEMailNotifications = YES; //SOGoACLsSendEMailNotifications = NO; //SOGoFoldersSendEMailNotifications = NO; /* Authentication */ SOGoPasswordChangeEnabled = NO; LDAPDebugEnabled = NO; /* LDAP authentication example */ //SOGoUserSources = ( // { // type = ldap; // CNFieldName = cn; // UIDFieldName = uid; // IDFieldName = uid; // first field of the DN for direct binds // bindFields = (uid, mail); // array of fields to use for indirect binds // baseDN = "ou=users,dc=acme,dc=com"; // bindDN = "uid=sogo,ou=users,dc=acme,dc=com"; // bindPassword = qwerty; // canAuthenticate = YES; // displayName = "Shared Addresses"; // hostname = ldap://127.0.0.1:389; // id = public; // isAddressBook = YES; // } //); /* LDAP AD/Samba4 example */ SOGoUserSources = ( { type = ldap; CNFieldName = cn; UIDFieldName = sAMAccountName; baseDN = "OU=People,dc=pmjlle,dc=joinville,dc=sc,dc=gov,dc=br"; bindDN = "s38420@pmjlle.joinville.sc.gov.br"; bindFields = (sAMAccountName); bindPassword = v0-k47:+.; canAuthenticate = YES; displayName = "Contatos Globais"; hostname = ldap://logon.pmjlle.joinville.sc.gov.br; filter = "(mail = '*' AND c = '1' AND zarafaAccount = '1')"; id = directory; isAddressBook = YES; } ); /* 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 username@domain.tld) * 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 = directory; // viewURL = "postgresql://sogo:sogo@127.0.0.1:5432/sogo/sogo_view"; // canAuthenticate = YES; // isAddressBook = YES; // userPasswordAlgorithm = md5; // } // ); /* Web Interface */ SOGoPageTitle = "Webmail Prefeitura de Joinville"; SOGoLoginModule = Mail; SOGoSoftQuotaRatio = 0.8; SOGoMailUseOutlookStyleReplies = YES; SOGoVacationEnabled = YES; SOGoForwardEnabled = NO; SOGoForwardConstraints = 1; SOGoMailMessageCheck = every_2_minutes; //SOGoSieveScriptsEnabled = YES; SOGoMailAuxiliaryUserAccountsEnabled = YES; //SOGoTrustProxyAuthentication = NO; SOGoFirstDayOfWeek = 1; SOGoMailComposeMessageType = html; SOGoEnableEMailAlarms = YES; OCSEMailAlarmsFolderURL = "postgresql://sogo:DlbYvp8MiyFolGdsWWcr@pmj-bd04:5432/sogo/sogo_alarms_folder"; SOGoMailCustomFromEnabled = YES; /* General */ SOGoLanguage = BrazilianPortuguese; SOGoTimeZone = America/Sao_Paulo; SOGoNotifyOnExternalModifications = YES; SOGoSupportedLanguages = ( "BrazilianPortuguese" ); SOGoCalendarDefaultRoles = ( PublicViewer, ConfidentialDAndTViewer ); SOGoCalendarDefaultReminder = "-PT15M"; SOGoSuperUsernames = (o35444); // This is an array - keep the parens! //SxVMemLimit = 384; //WOPidFile = "/var/run/sogo/sogo.pid"; //SOGoMemcachedHost = "/var/run/memcached.sock"; SOGoMemcachedHost = 127.0.0.1; /* Debug */ SOGoDebugRequests = YES; //SoDebugBaseURL = YES; //ImapDebugEnabled = YES; //LDAPDebugEnabled = YES; //PGDebugEnabled = YES; //MySQL4DebugEnabled = YES; //SOGoUIxDebugEnabled = YES; //WODontZipResponse = YES; //WOLogFile = /var/log/sogo/sogo.log; }