Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tbsync uses wrong timezone information for Germany #272

Open
fbartels opened this issue Aug 27, 2024 · 1 comment
Open

Tbsync uses wrong timezone information for Germany #272

fbartels opened this issue Aug 27, 2024 · 1 comment

Comments

@fbartels
Copy link

Your environment

TbSync version: 4.10
EAS-4-TbSync version: 4.11
Thunderbird version: 128.0.1esr (64-bit)

We came across this while improving our server side response to #269.

Expected behavior

  • when sending back a modified appointment tbsync sends these time information:
    [bias] => 0
    [tzname] => W. Europe Standard Time
    [dstendyear] => 0
    [dstendmonth] => 0
    [dstendday] => 0
    [dstendweek] => 0
    [dstendhour] => 0
    [dstendminute] => 0
    [dstendsecond] => 0
    [dstendmillis] => 0
    [stdbias] => 0
    [tznamedst] => W. Europe Standard Time
    [dststartyear] => 0
    [dststartmonth] => 0
    [dststartday] => 0
    [dststartweek] => 0
    [dststarthour] => 0
    [dststartminute] => 0
    [dststartsecond] => 0
    [dststartmillis] => 0
    [dstbias] => -120
    [timezone] => 0
    [timezonedst] => -120

In the change both StandardDate and DaylightDate are zero, so it is impossible to determine when to use daylight bias and when to use standard bias. The UTC compute logic is:

LocalTime + Bias + IsDayLight? DayLightBias : StandardBias

The spec for this can be found at https://learn.microsoft.com/en-us/openspecs/exchange_server_protocols/ms-asdtype/fe4760d2-3f8a-4453-908d-e256a6319956

There is already code dealing with switch dates at

if (tzInfo.std.switchdate && tzInfo.dst.switchdate) {
easTZ.standardDate.wMonth = tzInfo.std.switchdate.month;
easTZ.standardDate.wDay = tzInfo.std.switchdate.weekOfMonth;
easTZ.standardDate.wDayOfWeek = tzInfo.std.switchdate.dayOfWeek;
easTZ.standardDate.wHour = tzInfo.std.switchdate.hour;
easTZ.standardDate.wMinute = tzInfo.std.switchdate.minute;
easTZ.standardDate.wSecond = tzInfo.std.switchdate.second;
easTZ.daylightDate.wMonth = tzInfo.dst.switchdate.month;
easTZ.daylightDate.wDay = tzInfo.dst.switchdate.weekOfMonth;
easTZ.daylightDate.wDayOfWeek = tzInfo.dst.switchdate.dayOfWeek;
easTZ.daylightDate.wHour = tzInfo.dst.switchdate.hour;
easTZ.daylightDate.wMinute = tzInfo.dst.switchdate.minute;
easTZ.daylightDate.wSecond = tzInfo.dst.switchdate.second;
}

Actual behavior

Steps to reproduce

  • have a Kopano Cloud account connected via ActiveSync and TbSync
  • create all day appointment in Kopano WebApp and make sure it has a reminder
  • sync appointment to thunderbird and remove the reminder
  • afterwards it is shown in WebApp as a multi day appointment
** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[TbSync init] : Start (4.11)

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Thunderbird] : 128.0.1 on Linux

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <db>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <addressbook>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <lightning>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <eventlog>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <core>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <passwordManager>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <network>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <tools>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <manager>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <providers>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loading module <messenger>] : OK

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <db>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <addressbook>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <lightning>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <eventlog>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <core>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <passwordManager>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <network>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <tools>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <manager>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <providers>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Initializing module] : <messenger>

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[TbSync init] : Done

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : Default timezone has been found.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <America/Ciudad_Juarez> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <Antarctica/Troll> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <CET> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <Factory> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/AST4> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/AST4ADT> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/CST6> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/CST6CDT> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/EST5> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/EST5EDT> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/HST10> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/MST7> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/MST7MDT> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/PST8> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/PST8PDT> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/YST9> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : The IANA timezone <SystemV/YST9YDT> cannot be mapped to any Exchange timezone.

** Tue Aug 27 2024 17:46:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Loaded provider] : eas::Exchange ActiveSync (4.11)

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://autodiscover.kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : http://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : http://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : http://autodiscover.kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:01 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : http://kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover URL redirect] : 
http://autodiscover.kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected] => 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover URL redirect] : 
http://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected] => 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover URL redirect] : 
http://kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected] => 
https://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover URL redirect] : 
http://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected] => 
https://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Querry EAS autodiscover URL] : https://kopano-labs.com/autodiscover/autodiscover.xml @ [email protected]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://kopano-labs.com/Autodiscover/Autodiscover.xml => 
https://kopano-labs.com/Autodiscover/Autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EventLog] : 
*  https://kopano-labs.com/Autodiscover/Autodiscover.xml @ [email protected] : https://kopano-labs.com/Microsoft-Server-ActiveSync

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://kopano-labs.com/autodiscover/autodiscover.xml => 
https://kopano-labs.com/autodiscover/autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml => 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://autodiscover.kopano-labs.com/Autodiscover/Autodiscover.xml => 
https://autodiscover.kopano-labs.com/Autodiscover/Autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:02 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://kopano-labs.com/autodiscover/autodiscover.xml => 
https://kopano-labs.com/autodiscover/autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:03 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml => 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:03 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml => 
https://autodiscover.kopano-labs.com/autodiscover/autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://autodiscover.kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:03 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS autodiscover POST with status (200)] : 
https://kopano-labs.com/autodiscover/autodiscover.xml => 
https://kopano-labs.com/autodiscover/autodiscover.xml
[<?xml version="1.0" encoding="UTF-8"?>
<Autodiscover xmlns="http://schemas.microsoft.com/exchange/autodiscover/responseschema/2006">
  <Response xmlns="http://schemas.microsoft.com/exchange/autodiscover/mobilesync/responseschema/2006">
    <User>
      <DisplayName>Felix Bartels</DisplayName>
      <EMailAddress>[email protected]</EMailAddress>
    </User>
    <Action>
      <Settings>
        <Server>
          <Type>MobileSync</Type>
          <Url>https://kopano-labs.com/Microsoft-Server-ActiveSync</Url>
          <Name>https://kopano-labs.com/Microsoft-Server-ActiveSync</Name>
        </Server>
      </Settings>
    </Action>
    <Culture>en:us</Culture>
  </Response>
</Autodiscover>]

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.options, Account: Kopano Labs

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending] : OPTIONS https://kopano-labs.com/Microsoft-Server-ActiveSync

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.options, Account: Kopano Labs

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.request.options, Account: Kopano Labs

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[EAS OPTIONS with response (status: 200)] : 
responseText: 
responseHeader(MS-ASProtocolVersions): 12.0,12.1,14.0,14.1,16.0,16.1
responseHeader(MS-ASProtocolCommands): Sync,SendMail,SmartForward,SmartReply,GetAttachment,FolderSync,FolderCreate,FolderDelete,FolderUpdate,MoveItems,GetItemEstimate,MeetingResponse,Search,Settings,Ping,ItemOperations,Provision,ResolveRecipients,ValidateCert,Find,GetHierarchy

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:48:04 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Settings&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:05 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:48:05 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:48:05 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:48:05 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=FolderSync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:05 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:48:05 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: accountdone, Account: Kopano Labs

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Settings&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=FolderSync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:25 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: preparing, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.synckey, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.synckey, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.synckey, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=GetItemEstimate&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:26 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: done, Account: Kopano Labs

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: preparing, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.synckey, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.synckey, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.synckey, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:27 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=GetItemEstimate&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:-60, dst:-120)] : MET

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:-60, dst:-120)] : MET

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: done, Account: Kopano Labs

** Tue Aug 27 2024 17:48:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: accountdone, Account: Kopano Labs

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Settings&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:50:28 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=FolderSync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: preparing, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=GetItemEstimate&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:29 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: done, Account: Kopano Labs

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: preparing, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=GetItemEstimate&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Timezone matched via both offsets (std:0, dst:-120)] : Europe/Amsterdam

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: done, Account: Kopano Labs

** Tue Aug 27 2024 17:50:30 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: accountdone, Account: Kopano Labs

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Settings&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.setdeviceinfo, Account: Kopano Labs

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:50:42 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=FolderSync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.folders, Account: Kopano Labs

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: preparing, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=GetItemEstimate&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.estimate, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Contacts

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: done, Account: Kopano Labs

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: preparing, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:43 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=GetItemEstimate&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.estimate, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.localchanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:44 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:45 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: eval.response.localchanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:45 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.localchanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:47 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: prepare.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:47 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: send.request.remotechanges, Account: Kopano Labs, Folder: Calendar

** Tue Aug 27 2024 17:50:47 GMT+0200 (Mitteleuropäische Sommerzeit) **
[Sending (EAS v14.0)] : POST https://kopano-labs.com/Microsoft-Server-ActiveSync?Cmd=Sync&User=felix%40kopano-labs.com&DeviceType=TbSync&DeviceId=MZTB169b55fad512fd4594923fbd1fed

** Tue Aug 27 2024 17:50:48 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: done, Account: Kopano Labs

** Tue Aug 27 2024 17:50:48 GMT+0200 (Mitteleuropäische Sommerzeit) **
[setSyncState] : State: accountdone, Account: Kopano Labs

I can provide a test account.

@jobisoft
Copy link
Owner

Are you able to fix this in a pull request?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants
@fbartels @jobisoft and others