...
| Bloc de code | ||||||
|---|---|---|---|---|---|---|
| ||||||
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//GNUstep//DTD plist 0.9//EN" "http://www.gnustep.org/plist-0_9.xml"> <plist version="0.9"> <dict> <key>NGImap4ConnectionStringSeparator</key> <string>/</string> <key>NGImap4DisableIMAP4Pooling</key> <string>YES</string> <key>OCSEMailAlarmsFolderURL</key> <string>postgresql://sogo:password@127.0.0.1:5432/sogo/sogo_alarms_folder</string> <key>OCSFolderInfoURL</key> <string>postgresql://sogo:password@127.0.0.1:5432/sogo/sogo_folder_info</string> <key>OCSSessionsFolderURL</key> <string>postgresql://sogo:password@127.0.0.1:5432/sogo/sogo_sessions_folder</string> <key>SOGoACLsSendEMailNotifications</key> <string>YES</string> <key>SOGoAppointmentSendEMailNotifications</key> <string>YES</string> <key>SOGoAuthenticationType</key> <string>CAS</string> <key>SOGoCASLogoutEnabled</key> <string>YES</string> <key>SOGoCASServiceURL</key> <string>https://cas.univ-rouen.fr</string> <key>SOGoDAVAuthenticationType</key> <string>CAS</string> <key>SOGoDraftsFolderName</key> <string>Drafts</string> <key>SOGoEnableEMailAlarms</key> <string>YES</string> <key>SOGoFirstDayOfWeek</key> <string>1</string> <key>SOGoFirstWeekOfYear</key> <string>First4DayWeek</string> <key>SOGoFoldersSendEMailNotifications</key> <string>NO</string> <key>SOGoForwardEnabled</key> <string>YES</string> <key>SOGoHideSystemEMail</key> <string>YES</string> <key>SOGoIMAPServer</key> <string>imap://imap.univ-rouen.fr</string> <key>SOGoLanguage</key> <string>French</string> <key>SOGoMailAuxiliaryUserAccountsEnabled</key> <string>YES</string> <key>SOGoMailDomain</key> <string>univ-rouen.fr</string> <key>SOGoMailMessageCheck</key> <string>every_10_minutes</string> <key>SOGoMailMessageForwarding</key> <string>attached</string> <key>SOGoMailShowSubscribedFoldersOnly</key> <string>NO</string> <key>SOGoMailingMechanism</key> <string>smtp</string> <key>SOGoMemcachedHost</key> <string>127.0.0.1</string> <key>SOGoProfileURL</key> <string>postgresql://sogo:password@127.0.0.1:5432/sogo/sogo_user_profile</string> <key>SOGoSMTPServer</key> <string>smtp.univ-rouen.fr</string> <key>SOGoSentFolderName</key> <string>Sent</string> <key>SOGoSieveScriptsEnabled</key> <string>YES</string> <key>SOGoSieveServer</key> <string>sieve://sieve.univ-rouen.fr:2000</string> <key>SOGoMailSpoolPath</key> <string>/var/local/spool/sogo</string> <key>SOGoSuperUsernames</key> <array> <string>adminlogin</string> <string>admi2login</string> </array> <key>SOGoTimeZone</key> <string>Europe/Paris</string> <key>SOGoTrashFolderName</key> <string>Trash</string> <key>SOGoUserSources</key> <array> <dict> <key>CNFieldName</key> <string>displayName</string> <key>IDFieldName</key> <string>uid</string> <key>UIDFieldName</key> <string>uid</string> <key>baseDN</key> <string>ou=people,dc=univ-rouen,dc=fr</string> <key>bindDN</key> <string>cn=sogo,dc=univ-rouen,dc=fr</string> <key>bindFields</key> <array> <string>uid</string> </array> <key>bindPassword</key> <string>sogoldappassword</string> <key>canAuthenticate</key> <string>yes</string> <key>displayName</key> <string>Adresses partagées</string> <key>hostname</key> <string>ldap.univ-rouen.fr ldap-spare.univ-rouen.fr</string> <key>id</key> <string>ldap.univ-rouen.fr</string> <key>isAddressBook</key> <string>yes</string> <key>type</key> <string>ldap</string> </dict> </array> <key>SOGoVacationEnabled</key> <string>YES</string> <key>WOMessageUseUTF8</key> <string>YES</string> <key>WOParsersUseUTF8</key> <string>YES</string> <key>WOPort</key> <string>20000</string> <key>WOWatchDogRequestTimeout</key> <string>1</string> </dict> </plist> |
Concernant le fichier de configuration, on peut aussi utiliser le format non xml de plist.
Le fichier /etc/sogo/sogo.conf sera alors de cette forme :
| Bloc de code |
|---|
{
NGImap4ConnectionStringSeparator = "/";
NGImap4DisableIMAP4Pooling = "YES";
............
............
} |
Si vous optez pour placer ce fichier dans /home/sogo/GNUstep/Defaults/.GNUstepDefaults il sera cependant sous cette forme :
| Bloc de code |
|---|
{
NSGlobalDomain = {
};
sogod = {
NGImap4ConnectionStringSeparator = "/";
NGImap4DisableIMAP4Pooling = "YES";
............
............
};
}
|
Fichier de configuration Apache
...