2016-03-18 18:38:54 +01:00
|
|
|
{
|
2016-03-18 21:25:58 +01:00
|
|
|
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;
|
2016-03-18 18:38:54 +01:00
|
|
|
SOGoSentFolderName = Sent;
|
|
|
|
SOGoTrashFolderName = Trash;
|
2016-03-18 21:25:58 +01:00
|
|
|
SOGoDraftsFolderName = Drafts;
|
|
|
|
SOGoIMAPServer = "imaps://localhost:993/";
|
|
|
|
SOGoIMAPAclConformsToIMAPExt = YES;
|
|
|
|
SOGoVacationEnabled = NO;
|
|
|
|
SOGoForwardEnabled = NO;
|
|
|
|
SOGoSieveScriptsEnabled = NO;
|
|
|
|
SOGoFirstDayOfWeek = 0;
|
|
|
|
SOGoMailMessageCheck = manually;
|
|
|
|
SOGoMailAuxiliaryUserAccountsEnabled = NO;
|
2016-03-18 18:38:54 +01:00
|
|
|
/* 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 = "dc=yunohost,dc=org";
|
|
|
|
canAuthenticate = YES;
|
|
|
|
displayName = "Address Book";
|
|
|
|
hostname = ldap://localhost:389;
|
|
|
|
id = public;
|
|
|
|
isAddressBook = YES;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|