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

47 lines
1.6 KiB
Text
Raw Normal View History

2016-03-18 18:38:54 +01:00
{
2018-08-14 22:18:22 +02:00
WOPort = 127.0.0.1:__PORT__;
WOLogFile = /var/log/__APP__/sogo.log;
/* Fix Yunohost Tile */
WODontZipResponse = YES;
SOGoProfileURL = "mysql://__DBUSER__:__DBPASS__@localhost:3306/__APP__/sogo_user_profile";
OCSFolderInfoURL = "mysql://__DBUSER__:__DBPASS__@localhost:3306/__APP__/sogo_folder_info";
OCSSessionsFolderURL = "mysql://__DBUSER__:__DBPASS__@localhost:3306/__APP__/sogo_sessions_folder";
2018-08-31 16:50:05 +02:00
NGImap4ConnectionStringSeparator = ".";
2016-03-18 21:25:58 +01:00
SOGoAppointmentSendEMailNotifications = YES;
SOGoEnablePublicAccess = YES;
SOGoMailingMechanism = smtp;
2018-08-14 22:18:22 +02:00
SOGoSMTPServer = 127.0.0.1:__SMTP_PORT__;
SOGoSMTPAuthenticationType = PLAIN;
2016-03-18 21:25:58 +01:00
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;
2018-08-14 22:18:22 +02:00
SOGoVacationEnabled = YES;
SOGoForwardEnabled = YES;
SOGoSieveScriptsEnabled = YES;
SOGoSieveServer = sieve://127.0.0.1:4190;
2016-03-18 21:25:58 +01:00
SOGoFirstDayOfWeek = 0;
2018-08-14 22:18:22 +02:00
SOGoMailMessageCheck = every_10_minutes;
2016-03-18 21:25:58 +01:00
SOGoMailAuxiliaryUserAccountsEnabled = NO;
2018-08-14 22:18:22 +02:00
SOGoTrustProxyAuthentication = YES;
SOGoSuperUsernames = (__ADMINUSER__);
/* LDAP authentication */
2016-03-18 18:38:54 +01:00
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;
2018-08-14 22:18:22 +02:00
displayName = "Yunohost Users";
2016-03-18 18:38:54 +01:00
hostname = ldap://localhost:389;
2018-08-14 22:18:22 +02:00
id = directory;
2016-03-18 18:38:54 +01:00
isAddressBook = YES;
}
);
}