Re: [SOGo] ActiveSync socket shutdown

2016-11-16 Thread "martin"
I dont know where to put in nginx, but you shoulld have a timeout in nginx for active sync. Like:ProxyPass /Microsoft-Server-ActiveSync \http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync \retry=60 connectiontimeout=5 timeout=3600 Am Mittwoch, November 16, 2016 13:34 CET, "Andreas"

Re: [SOGo] ActiveSync socket shutdown

2016-11-16 Thread Andreas
Here is the nginx config for SOGo: location ^~/SOGo { proxy_pass http://127.0.0.1:2; proxy_redirect http://127.0.0.1:2 default; # forward user's IP address proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For

Re: [SOGo] ActiveSync socket shutdown

2016-11-16 Thread "martin"
How long does you nginx keeps the connection open? Could you post your nginx conf for sogo? Am Dienstag, November 15, 2016 21:57 CET, "Andreas" (list_m...@zero-one.net) schrieb:  Hi, I am facing issues with ActiveSync while only having one client (1 device) on the server. My

[SOGo] ActiveSync socket shutdown

2016-11-15 Thread Andreas
Hi, I am facing issues with ActiveSync while only having one client (1 device) on the server. My logs say: mail1 sogo.log: Nov 15 21:45:36 sogod [17252]: [ERROR] <0x0x56309eb3b0a0[WOHttpTransaction]> client disconnected during delivery of response for

[SOGo] Activesync socket shutdown

2015-01-21 Thread list01
Hi, I try to sync an iOS device and the log shows: (X-GUID aecda51f656dbe50x0x7fb41e22d548[WOHttpTransaction] client disconnected during delivery of response for WORequest[0x0x7fb41e2a4e08]: method=POST uri=/SOGo/Microsoft-Server-ActiveSync?

Re: [SOGo] Activesync socket shutdown

2015-01-21 Thread zero one
I am using nginx with these Settings: location ^~ /Microsoft-Server-ActiveSync { client_max_body_size 10m; client_body_buffer_size 4k; proxy_connect_timeout 90; proxy_send_timeout 90; proxy_read_timeout 90; proxy_buffers 4 32k; proxy_pass http://127.0.0.1:2/SOGo/Microsoft-Server-ActiveSync;

Re: [SOGo] Activesync socket shutdown

2015-01-21 Thread Ludovic Marcotte
On 21/01/2015 01:51, lis...@outlook.de wrote: This makes the iPad hang in a sync loop. What could be the reason for the socket shutdown? That normally happens (the message you pasted) if the client (iPad) or Apache closes the connection to SOGo before it's able to deliver its response. What