You are not logged in.

Announcement

 Téléchargez la dernière version stable de GLPI      -     Et vous, que pouvez vous faire pour le projet GLPI ? :  Contribuer
 Download last stable version of GLPI                      -     What can you do for GLPI ? :  Contribute

#1 2020-11-27 13:48:12

manubzz
Member
Registered: 2013-09-16
Posts: 12

Synchronize calendar with thunderbird

Hi,

I was reading about changes in 9.5 and am very happy to see that interesting changes appeared in 9.5
We are running 9.5.2 and I'm trying to sync my GLPI calendar with Thunderbird 78.5.0 but I don't find a correct way to do it.

When I try to add a new caldav with url + login, Thunderbird never asks for password and the calendar is disabled automatically.

The new improvments such as external events (not linked with glpi) are very cool. We can now use this planning such as a real organization tool.

If the bi directionnal sync runs fine smile

Regards,

Offline

#2 2020-12-03 12:19:56

manubzz
Member
Registered: 2013-09-16
Posts: 12

Re: Synchronize calendar with thunderbird

Hi,

Some news.
I tried to add the calendar and started to debug on the server.

Here are some outputs from nginx.error :

2020/12/03 11:11:33 [error] 20621#20621: *313 FastCGI sent in stderr: "Primary script unknown" while reading response header from upstream, client: A.B.C.D, server: glpi.dom.tld, request: "PROPFIND /glpi/caldav.php/calendars/users/abcd/calendar/ HTTP/1.1", upstream: "fastcgi://unix:/var/run/php/php7.2-fpm.sock:", host: "glpi.dom.tld"

The configuration is :
- Debian 9.13
- Nginx 1.10.3
- PHP 7.2.34

Here is my nginx configuration, hope it will help

server {
        listen   80 ;
        server_name glpi.dom.tld;
        return 404; # managed by Certbot
        
        if ($host = glpi.host.tld) {
	        return 301 https://$host$request_uri;
        } # managed by Certbot

}

server {
	listen 443 ssl; # managed by Certbot
        ssl_certificate /etc/letsencrypt/live/glpi.dom.tld/fullchain.pem; # managed by Certbot
        ssl_certificate_key /etc/letsencrypt/live/glpi.dom.tld/privkey.pem; # managed by Certbot
        include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
        ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot
        
        root /var/www/html;
        index index.php;
        server_name glpi.dom.tld;
        
        location / {try_files $uri $uri/ index.php;}
        
        location ~ ^/glpi/files/(.+)$ {
                deny all;
        }
        
        location ~ \.php$ {
                fastcgi_pass unix:/var/run/php/php7.2-fpm.sock;
                fastcgi_index index.php;
                include /etc/nginx/fastcgi_params;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
                fastcgi_param SERVER_NAME $host;
        }                                                                                                                          
}

Offline

#3 2021-01-06 17:20:37

manubzz
Member
Registered: 2013-09-16
Posts: 12

Re: Synchronize calendar with thunderbird

Up.
I created an issue on github : https://github.com/glpi-project/glpi/issues/8376

Offline

Board footer

Powered by FluxBB