Hallo!
In einer UCS/Kopano Umgebung haben wir die Kontakte eines Benutzers freigegeben (Berechtigungsprofil: Volle Kontrolle). Alle anderen Benutzer haben sie sich als Gemeinsame Kontakte hinzugefügt, finden diese nun aber nicht im Adressbuch, z.b. beim Schreiben einer neuen Email.
Wie kann ich Gemeinsame Kontakte für alle Benutzer auch im Adressbuch verfügbar machen?
this behaviour can be controlled from WebApps config.php:
// Set true to hide shared contact folders in address-book folder list,
// false will show shared contact folders in address-book folder list.
define("DISABLE_SHARED_CONTACT_FOLDERS", true);
you can set this via the following command:
ucr set kopano/webapp/config/DISABLE_SHARED_CONTACT_FOLDERS=false
if you get an error that the php endtag is missing and changes would not be applied, then you first need to copy the config.php.dpkg-dist over to config.php. All customisations can afterwards be reapplied with the following command: while read ucrv; do ucr set "$ucrv"="$(ucr get $ucrv)"; done < <(ucr search --brief kopano/webapp | awk -F : '{print $1}')
I don’t think, at least not yet. That being said, @fbartels recently reported on Kopano’s effort to implement CardDAV functionality in addition to the already-existing CalDAV functionality here. Looks like it’s in working shape already, but you still have to install it manually for the time being.
Edit: yeah well, I totally didn’t think of gabsync… obviously wrong answer is obviously wrong