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
2016-03-18 22:10:11 +01:00

40 lines
1.3 KiB
Text

{
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";
SOGoLanguage = English;
SOGoAppointmentSendEMailNotifications = YES;
SOGoEnablePublicAccess = YES;
SOGoMailingMechanism = smtp;
SOGoSMTPServer = 127.0.0.1;
SOGoTimeZone = UTC;
SOGoSentFolderName = Sent;
SOGoTrashFolderName = Trash;
SOGoDraftsFolderName = Drafts;
SOGoIMAPServer = "imaps://localhost:993/";
SOGoIMAPAclConformsToIMAPExt = YES;
SOGoVacationEnabled = NO;
SOGoForwardEnabled = NO;
SOGoSieveScriptsEnabled = NO;
SOGoFirstDayOfWeek = 0;
SOGoMailMessageCheck = manually;
SOGoMailAuxiliaryUserAccountsEnabled = 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 = "dc=yunohost,dc=org";
canAuthenticate = YES;
displayName = "Address Book";
hostname = ldap://localhost:389;
id = public;
isAddressBook = YES;
}
);
}