This is the Kolab Groupware solution meta-package.

More information about Kolab Groupware can be found on:

  http://www.kolab.org


=======================================================
== KNOWN ISSUES on openSUSE 13.1:

* apache2 won't start (bnc#842377):
The default apache2 installation does not enable mod_socache_shmcb.

You can enable it doing the following:
# a2enmod socache_shmcb

After that, try restarting apache2:
# systemctl restart apache2.service


* apache2 denies access to all web pages (bnc#854263):
Apache2 >= 2.4 should use "Require ..." instead of "Order/Allow/Deny" for access management. Without a compat module, we can either use one.
openSUSE ships a config ´uration that does rely on the latter (the older one) for compability reasons.

# vim /etc/apache2/httpd.conf

Goto line 150

Change <Directory /> as follows:
  * Add    'Require all denied'
  * Remove 'Order deny,allow'
  * Remove 'Deny from all'

Change <Files ~ "^\.ht">
  * Add    'Require all denied'
  * Remove 'Order deny,allow'
  * Remove 'Deny from all'

Restart apache2:
# systemctl restart apache2.service


=======================================================
== KNOWN ISSUES on openSUSE 12.3:

No known issues.