On Fri, Aug 12, 2016 at 06:55:27AM -0400 you wrote:
> On 2016-08-12 3:24 AM, Ralf Cirksena ([email protected]) wrote:
>
> >We configured the resources according to the instructions found in the
> >wiki:http://wiki.sogo.nu/ResourceConfiguration
> Also show your sogo.conf file, otherwise we can't see what's wrong.
sure. Here it is (text between <> changed for privacy reasons):
------------------------------------------------------------------------
{
/* ********************* Main SOGo configuration file **********************
* *
* Since the content of this file is a dictionary in OpenStep plist format, *
* the curly braces enclosing the body of the configuration are mandatory. *
* See the Installation Guide for details on the format. *
* *
* C and C++ style comments are supported. *
* *
* This example configuration contains only a subset of all available *
* configuration parameters. Please see the installation guide more details. *
* *
* ~sogo/GNUstep/Defaults/.GNUstepDefaults has precedence over this file, *
* make sure to move it away to avoid unwanted parameter overrides. *
* *
* **************************************************************************/
/* Database configuration (mysql:// or postgresql://) */
SOGoProfileURL = "mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_user_profile";
OCSFolderInfoURL = "mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_folder_info";
OCSSessionsFolderURL =
"mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_sessions_folder";
OCSEMailAlarmsFolderURL =
"mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_alarms_folder";
OCSStoreURL = "mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_store";
OCSAclURL = "mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_acl";
OCSCacheFolderURL =
"mysql://sogo:evapan6@sogo-db:3306/sogo/sogo_cache_folder";
MySQL4Encoding = "utf8mb4";
/* Mail */
SOGoDraftsFolderName = Drafts;
SOGoSentFolderName = Sent;
SOGoTrashFolderName = Trash;
SOGoIMAPServer = <our imap server>;
//SOGoSieveServer = sieve://127.0.0.1:4190;
SOGoSMTPServer = <our imap server>;
SOGoMailDomain = <domain.tld>;
SOGoMailingMechanism = smtp;
//SOGoForceExternalLoginWithEmail = NO;
SOGoMailSpoolPath = /var/spool/sogo;
NGImap4ConnectionStringSeparator = "/";
/* Notifications */
//SOGoAppointmentSendEMailNotifications = YES;
//RK 2016-06-16 Testing
SOGoAppointmentSendEMailNotifications = YES;
SOGoACLsSendEMailNotifications = YES;
SOGoFoldersSendEMailNotifications = YES;
SOGoEnableEMailAlarms = YES;
/* Authentication */
SOGoPasswordChangeEnabled = NO;
/* LDAP authentication example */
SOGoUserSources = (
{
type = ldap;
CNFieldName = cn;
UIDFieldName = uid;
IDFieldName = uid; // first field of the DN for direct binds
bindFields = (uid, mail, o); // array of fields to use for indirect binds
baseDN = "ou=accounts,dc=<domain>,dc=<tld>";
// bindDN = "uid=sogo,ou=users,dc=acme,dc=com";
// bindPassword = qwerty;
canAuthenticate = YES;
displayName = "Directory";
hostname = ldap://<ldap.domain.tld>:389;
id = public;
isAddressBook = YES;
// non user accounts ausfiltern. Ci, 2016-07-25
filter = "(businessCategory='intern')";
// Testweise; soll die Adressbuchsuche vereinfachen. Nicht bei sehr grossen
// Adressbuechern verwenden! Ci, 2016-06-28
listRequiresDot = NO;
},
{
type = ldap;
CNFieldName = cn;
IDFieldName = cn;
UIDFieldName = cn;
baseDN = "ou=sogogroups,dc=<domain>,dc=<tld>";
canAuthenticate = YES;
displayName = "Groups";
hostname = ldap://ldap.<domain.tld>:389;
id = groups;
isAddressBook = YES;
}
);
/* LDAP AD/Samba4 example */
//SOGoUserSources = (
// {
// type = ldap;
// CNFieldName = cn;
// UIDFieldName = sAMAccountName;
// baseDN = "CN=users,dc=domain,dc=tld";
// bindDN = "CN=sogo,CN=users,DC=domain,DC=tld";
// bindFields = (sAMAccountName, mail);
// bindPassword = password;
// canAuthenticate = YES;
// displayName = "Public";
// hostname = ldap://127.0.0.1:389;
// filter = "mail = '*'";
// id = directory;
// isAddressBook = YES;
// }
//);
/* SQL authentication example */
/* These database columns MUST be present in the view/table:
* c_uid - will be used for authentication - it's the username or
[email protected])
* c_name - which can be identical to c_uid - will be used to uniquely
identify entries
* c_password - password of the user, plain-text, md5 or sha encoded for
now
* c_cn - the user's common name - such as "John Doe"
* mail - the user's mail address
* See the installation guide for more details
*/
//SOGoUserSources =
// (
// {
// type = sql;
// id = directory;
// viewURL = "postgresql://sogo:[email protected]:5432/sogo/sogo_view";
// canAuthenticate = YES;
// isAddressBook = YES;
// userPasswordAlgorithm = md5;
// }
// );
/* Web Interface */
SOGoPageTitle = "SOGo";
SOGoVacationEnabled = NO;
SOGoForwardEnabled = NO;
SOGoSieveScriptsEnabled = NO;
SOGoMailAuxiliaryUserAccountsEnabled = YES;
//SOGoTrustProxyAuthentication = NO;
//SOGoXSRFValidationEnabled = YES;
SOGoExternalAvatarsEnabled = NO;
SOGoGravatarEnabled = NO;
SOGoEnablePublicAccess = YES; //#was set to YES (Testing for Outlook Problems)
// SOGoCalendarDefaultRoles = ( PublicViewer, ConfidentialDAndTViewer,
PrivateDAndTViewer ); ## Doppelt vorhanden
SOGoMaximumPingInterval = 30;
//SOGoMaximumSyncInterval = 3540;
//SOGoInternalSyncInterval = 60;
WOWatchDogRequestTimeout = 10;
/* General */
SOGoLanguage = German;
SOGoTimeZone = Europe/Berlin;
SOGoCalendarDefaultRoles = ( PublicViewer, ConfidentialDAndTViewer,
PrivateDAndTViewer );
SOGoSuperUsernames = (admin, root); // This is an array - keep the parens!
//RK 2016-28-06 Web Performance bad limit unset
//SxVMemLimit = 384;
//WOPidFile = "/var/run/sogo/sogo.pid";
//RK 2016-28-06 Web Performance bad no memcache active
SOGoMemcachedHost = 127.0.0.1;
//SOGoMemcachedHost = "/var/run/memcached.sock";
SOGoFreeBusyDefaultInterval = (30, 30);
//RK 2016-28-06 Web Performance bad set workers. overwritten by
/etc/default/sogo PREFORK set workers amount in this file
//WOWorkersCount = 60;
/* Debug */
//SOGoDebugRequests = YES;
//SoDebugBaseURL = YES;
//ImapDebugEnabled = YES;
//LDAPDebugEnabled = YES;
//PGDebugEnabled = YES;
// MySQL4DebugEnabled = YES;
// SOGoEASDebugEnabled = YES;
//SOGoUIxDebugEnabled = YES;
//WODontZipResponse = YES;
//WOLogFile = /var/log/sogo/sogo.log;
}
------------------------------------------------------------------------
Greetings
--
R. Cirksena
--
[email protected]
https://inverse.ca/sogo/lists