Merijn Schering
Merijn Schering
Thanks! We'll make this when we refactor e-mail. PS: You can go back now by swiping from left to right. Not ideal but it works.
Wow nice going! Could you share an ics file that fails for testing?
Nice find with the IntlTimeZone::getIDForWindowsID() function. It would be even better if this is used in the Sabre Vobject library. Would you be interested in creating a pull request for...
How much were the modification times off?
The default location for the files is /var/lib/groupoffice and not /home/groupoffice. The dockerfile creates this location: https://github.com/Intermesh/docker-groupoffice/blob/3c12a1c38cbe620bb827a5c4817ed461c8c3b701/Dockerfile#L77 Try mounting it there and adjust your config.php.
But is there $config['file_storage_path'] = '/var/lib/groupoffice'; in your config.php? I don't understand where the /home/groupoffice path comes from.
You are mounting your own config.php. I don't know why you choose to do this but normally the docker container creates it like this: ```
But you mount host directories here: ``` volumes: - /volumes/group-office/data:/var/lib/groupoffice:cached - /volumes/group-office/etc/groupoffice:/etc/groupoffice:cached - /volumes/group-office/studio:/usr/local/share/groupoffice/go/modules/studio:cached - /volumes/group-office/src/studio:/usr/local/share/groupoffice/go/modules/studio # - /volumes/group-office/ssl/groupoffice:/etc/ssl/groupoffice ``` I suggest you start with the supplied compose.yaml file. That...
My only guess left is that /volumes/group-office/data is not writable. If I try the standard compose.yaml then it works straight away on a fresh install.
Thanks for helping out. I'll look into this.