Navigation

    Kopano
    • Register
    • Login
    • Search
    • Categories
    • Get Official Kopano Support
    • Recent
    Statement regarding the closure of the Kopano community forum and the end of the community edition

    Z-Push with CalDAV backend - timezone issues

    Z-Push when using other backends
    4
    12
    4090
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • robby_hl
      robby_hl last edited by

      Hi Sebastian, thanks for getting back to me so quickly! I did the following:

      1. Create appointment “Test 1 (on Nextcloud)” using Nextcloud web frontend, 10:00 to 10:30 (see test1.png)
      2. Sync to eM Client (test1.log, https://pastebin.com/tAFMXvVf) -> appointment shows up as 11:00-11:30
      3. Create appointment “Test 2 (eM Client)”, 11:00 to 11:30 in eM Client and sync it to Nextcloud (see test2.png and test2.log, https://pastebin.com/3dKhxRh8) -> shows up correctly in Nextcloud - but shows UTC as time zone
      4. Change name of appointment in Nextcloud to “Test 2 (eM Client, modified)” and sync back to eM Client (test2b.png, test3.log, https://pastebin.com/6arNeN5u) -> shows up correctly in eM Client
      5. Change time of appointment in Nextcloud (to 10:00-10:30), sync back to eM Client (test4.log, https://pastebin.com/6A9xD1Vb) -> shows up correctly

      Also, the ics files (downloaded using WebDAV) of 1. (here: https://pastebin.com/hBtq8scr) and 5. (here: https://pastebin.com/qz8aR1H7) are attached.

      Thanks so much!

      robby_hl

      btw, eM Client still supports ActiveSync, albeit only for Outlook.com. After creating an account, it will let you modify the server address

      0_1495829865200_test1.png
      0_1495829883676_test2.png
      0_1495829901249_test2b.png

      1 Reply Last reply Reply Quote 0
      • Manfred
        Manfred Kopano last edited by

        Hi robby_hl,

        the problem is how the caldav backend tries to determine the timezone from ical data. I’ve created a ticket for this issue: https://jira.z-hub.io/browse/ZP-1224. You can follow the progress there.

        Manfred

        1 Reply Last reply Reply Quote 0
        • robby_hl
          robby_hl last edited by

          Hello Manfred,

          thanks for getting into this problem! I just checked out your branch using git and tried it. Unfortunately, to no avail :-(

          A calendar entry created at 10am in Nextcloud (time zone Berlin) still syncs as 11am to my Phone (W10M) and to eM Client. The sync log of this single entry is here: https://pastebin.com/HVuUyrt2

          I can see that your new function is triggered (line 185) in the log, but it still doesn’t work. The time zone of the calendar entry in eM Client is now totally strange, it looks Chinese:

          0_1496178751820_Unbenannt.png

          Thanks so much for looking into my problem, though!

          Best,

          robby_hl

          1 Reply Last reply Reply Quote 0
          • Manfred
            Manfred Kopano last edited by

            Hi robby_hl,

            the timezone sent to the eM client looks correct. It results into CET:

                [bias] => -60
                [tzname] => CET
                [dstendyear] => 0
                [dstendmonth] => 10
                [dstendday] => 0
                [dstendweek] => 5
                [dstendhour] => 1
                [dstendminute] => 0
                [dstendsecond] => 0
                [dstendmillis] => 0
                [stdbias] => 0
                [tznamedst] => CEST
                [dststartyear] => 0
                [dststartmonth] => 3
                [dststartday] => 0
                [dststartweek] => 5
                [dststarthour] => 1
                [dststartminute] => 0
                [dststartsecond] => 0
                [dststartmillis] => 0
                [dstbias] => -60
                [timezone] => -60
                [timezonedst] => -60
            

            It might be that the eM client doesn’t understand that and expects a different description.

            The dststarthour and dstendhour are wrong (should be 2 and 3), so it’s also possible that’s the reason why the eM client doesn’t recognise the timezone correctly.

            Manfred

            1 Reply Last reply Reply Quote 0
            • robby_hl
              robby_hl last edited by

              Hi Manfred,

              thanks for being so patient with my problem. I really appreciate this! Unfortunately, I don’t believe it’s eM Client’s fault. I didn’t mention this in my last post, but the behavior with Windows 10 Calendar app (both desktop and mobile) is also wrong. There, the event is synced just as incorrectly. But one thing is quite interesting: an event outside DST syncs properly. To make sure I don’t do anything exceedingly stupid, I also tried Outlook 2013 as a client - the exact same behavior: events with DST are one hour off (i.e. 10am instead of 9am) and events outside DST sync fine. I also observed that eM Client also does not properly decode the time zone for non-DST events, showing the same strange Chinese (?) character.

              robby_hl

              1 Reply Last reply Reply Quote 0
              • Manfred
                Manfred Kopano last edited by

                Hi robby_hl,

                I’ve changed the caldav backend to use the Z-Push timezone functions which are also used by other backends. Please try the branch again.

                Manfred

                1 Reply Last reply Reply Quote 0
                • robby_hl
                  robby_hl last edited by

                  Hi Manfred,

                  unfortunately, no change. An appointment at 11am CEST still shows up as 12 noon. Same in eM Client, Windows 10 Calendar (both desktop and mobile) and Outlook 2013.

                  Log file: https://pastebin.com/BfqCGGfq

                  robby_hl

                  1 Reply Last reply Reply Quote 0
                  • Manfred
                    Manfred Kopano last edited by

                    Hi robby_hl,

                    the timezone information is correct, but it looks like that caldav backend doesn’t correctly handle the daylight saving bias.

                    09/06/2017 15:58:14 [ 2191] [WBXML] [robby_hl] O        <POOMCAL:StartTime>
                    09/06/2017 15:58:14 [ 2191] [WBXML] [robby_hl] O        20170610T100000Z
                    09/06/2017 15:58:14 [ 2191] [WBXML] [robby_hl] O        </POOMCAL:StartTime>
                    

                    It should be 20170610T090000Z.

                    I’ve created another ticket for this: https://jira.z-hub.io/browse/ZP-1236.

                    Manfred

                    orlovnv 1 Reply Last reply Reply Quote 0
                    • orlovnv
                      orlovnv @Manfred last edited by

                      @Manfred i have the same problem debian10 z-push from debian repo 2.4.5-2. +1 hour to my timezone((((

                      Manfred 1 Reply Last reply Reply Quote 0
                      • Manfred
                        Manfred Kopano @orlovnv last edited by

                        Hi @orlovnv,

                        @orlovnv said in Z-Push with CalDAV backend - timezone issues:

                        @Manfred i have the same problem debian10 z-push from debian repo 2.4.5-2. +1 hour to my timezone((((

                        You can follow the progress of the issue here: https://jira.z-hub.io/browse/ZP-1435.

                        Manfred

                        1 Reply Last reply Reply Quote 0
                        • First post
                          Last post