1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/sogo_ynh.git synced 2024-09-03 20:26:07 +02:00
sogo_ynh/conf/sogo.conf

41 lines
1.3 KiB
Text
Raw Normal View History

2016-03-18 18:38:54 +01:00
{
2016-03-18 22:10:11 +01:00
SOGoProfileURL = "mysql://DBUSER:DBPASS@localhost:3306/sogo/sogo_user_profile";
OCSFolderInfoURL = "mysql://DBUSER:DBPASS@localhost:3306/sogo/sogo_folder_info";
OCSSessionsFolderURL = "mysql://DBUSER:DBPASS@localhost:3306/sogo/sogo_sessions_folder";
2016-03-18 21:25:58 +01:00
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
2016-03-19 01:59:19 +01:00
baseDN = "ou=users,dc=yunohost,dc=org";
2016-03-18 18:38:54 +01:00
canAuthenticate = YES;
2016-03-18 22:16:14 +01:00
displayName = "Global Address Book";
2016-03-18 18:38:54 +01:00
hostname = ldap://localhost:389;
id = public;
isAddressBook = YES;
}
);
}