mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-04 21:08:51 +00:00
sogo.conf - new example configuration file
This commit is contained in:
103
Scripts/sogo.conf
Normal file
103
Scripts/sogo.conf
Normal file
@@ -0,0 +1,103 @@
|
||||
{
|
||||
/* ******************** Main SOGo configuration file ********************
|
||||
*
|
||||
* This is a dictionary in OpenStep property list format.
|
||||
* 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.
|
||||
*
|
||||
*/
|
||||
|
||||
/* 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";
|
||||
|
||||
/* 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 = "/";
|
||||
|
||||
//SOGoAppointmentSendEMailNotifications = NO;
|
||||
//SOGoACLsSendEMailNotifications = NO;
|
||||
|
||||
/* Authentication */
|
||||
//SOGoPasswordChangeEnabled = YES;
|
||||
|
||||
/* LDAP authentication example */
|
||||
//SOGoUserSources = (
|
||||
// {
|
||||
// type = ldap;
|
||||
// CNFieldName = cn;
|
||||
// IDFieldName = uid;
|
||||
// UIDFieldName = uid;
|
||||
// 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;
|
||||
// }
|
||||
//);
|
||||
|
||||
/* 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 = SOGo;
|
||||
//SOGoVacationEnabled = YES;
|
||||
//SOGoForwardEnabled = YES;
|
||||
//SOGoSieveScriptsEnabled = YES;
|
||||
|
||||
/* General */
|
||||
//SOGoLanguage = English;
|
||||
//SOGoTimeZone = America/Montreal;
|
||||
//SOGoCalendarDefaultRoles = (
|
||||
// PublicDAndTViewer,
|
||||
// ConfidentialDAndTViewer
|
||||
//);
|
||||
//SOGoSuperUsernames = (sogo1, sogo2); //This is an array - keep the parens!
|
||||
|
||||
/* Debug */
|
||||
//SoDebugBaseURL = YES;
|
||||
//ImapDebugEnabled = YES;
|
||||
//LDAPDebugEnabled = YES;
|
||||
//SOGoDebugRequests = YES;
|
||||
//PGDebugEnabled = YES;
|
||||
//MySQL4DebugEnabled = YES;
|
||||
//SOGoUIxDebugEnabled = YES;
|
||||
//WODontZipResponse = YES;
|
||||
//WOLogFile = /var/log/sogo/sogo.log;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user