Results 315 comments of Peter Bieringer
trafficstars

> Which aspect should I check? The json syntax is checked during json.loads in config.py. Best that they are valid collection properties (calendar or address book). Alternative: hardcode and only...

> check_and_sanitize_props called before create_collection in `app/__init__.py - l277` i didn't think we need do this in config. but this will be triggered on first usage only, and then it...

I have similar setup here, having shared calendar by softlinking, clients are - Thunderbird - Android (DaVx) - iOS I had similar issue in the past and finally it was...

The "MOVE" code was extended related to such detection between 3.1.8 and 3.19, are you using latest version? And can you confirm your "nginx" configuration is similar to what is...

Is it working now? If not, the related code is here: https://github.com/Kozea/Radicale/blob/master/radicale/app/move.py Check also why your config misses ``` proxy_set_header Host $http_host; ```

Is your case also working if you simply change this line ``` - if to_netloc_with_port != get_server_netloc(environ, force_port=True): - if to_netloc_with_port != get_server_netloc(environ, force_port=False): ``` BTW: nobody else is currently...

"MOVE" is working fine behind an Apache reverse proxy using config sniplet from documentation https://radicale.org/master.html#reverse-proxy Can you add following line to your "nginx" configuration ``` proxy_set_header X-Forwarded-Proto "https"; ``` This...