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

    ZP-1157 / similar errors with Caldav/Carddav/IMAP and Windows 10 mail/people/calendar

    Z-Push when using other backends
    3
    17
    4026
    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.
    • Sebastian
      Sebastian Kopano last edited by

      Don’t worry too much about the user agent. WP doesn’t send it in all requests and there we just print the header (which is not available).
      It’s because that’s an unexpected exception that is not being catched.

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

        Hi cpitchford,

        @cpitchford said in ZP-1157 / similar errors with Caldav/Carddav/IMAP and Windows 10 mail/people/calendar:

        Ah that’s interesting!!

        I think I’ve spotted the problem, will test and report back… but:

        My log file was actually filtered (sensitive terms and names changed to protect the innocent!)

        Lets pretend my calendar is actually called “Testing” not “testing”

        So, I’d already defined CALDAV_PERSONAL in my config:

        define('CALDAV_PERSONAL', 'Testing');
        

        However, there are two (identical) if statements that check the calendar:

        if (defined('CALDAV_PERSONAL') && strtolower(substr($id, 1)) == CALDAV_PERSONAL) {
        

        The if statement won’t match as its only converting the caldav calendar name, not the defined constant

        So, I propose (as a patch) changing the if statements in caldav.php into:

        if (defined('CALDAV_PERSONAL') && strcasecmp(substr($id, 1), CALDAV_PERSONAL) == 0) {
        

        So that the names are compared case-insensatively

        (the alternative is, perhaps, a comment in the caldav config file explaining CALDAV_PERSONAL must be entirely lower case.

        The caldav and cardav backends were contributed by the community, so feel free to open a JIRA ticket, commit the change and send us a pull request.
        We have a wiki page on how to contribute to Z-Push: https://wiki.z-hub.io/display/ZP/Development+guidelines

        Manfred

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

          @Manfred

          Hi Manfred,

          I’m hoping I’ve done things correctly and created ZP-1244 for the case-matching problem. It’s looking good on my set up so fingers crossed!

          I’m going to crack on with inserting more debug lines into the code to see if I can watch what’s happening to this missing states

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

            Patch looks good to me. I’ve set the target version to 2.3.8.

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

              Your patch is merged into develop and is also in 2.3.8beta0+22 (just published).

              Thanks!

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

                I’ve narrowed down the original problem (now running 2.3.8beta0)

                I’ve set up a test account:

                zero emails
                zero calendar entries
                zero tasks
                one contact

                When I set up the account in MS Mail, it will sync, once. If I press “refresh” it faults (and Z-Push returns 500)

                I can’t figure out why [StateManager]->newStateCounter is either unset or “”

                It should be set to either 1 or 1+the current counter if [StateManager]->GetNewSyncKey is called…

                But for this StateManager, it appears GetNewSyncKey was not called.

                So if GetNewSyncKey was not called, why would it need to call [StateManager]->SetSyncState??

                I’ve an updated log of configuring the client, syncing once, retrying and hitting the error

                https://maildebug.intrepid.co.uk/capture3.log

                I’m wondering if it is related to loop detection? Or possibly a php issue.

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

                  Hey Chris,

                  thanks for debugging this, your log gave some good indications what was going on. Disabling the FolderStat support I could also reproduce this with the Kopano backend.

                  I’ve created a ticket and was able to fix the issue. The states were being confirmed which leads at a certain point to the deletion of the old state, but the folderdata (SyncParameters) are not saved/updated correctly.

                  https://jira.z-hub.io/browse/ZP-1247

                  The fix is already merged into develop. Could you test that?

                  Cheers,
                  Sebastian

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

                    There is also ZP-1248 which adds the windows mail app to the “long timeout device list”. It’s also in develop and will require to update your main config.

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

                      It’s looking great!!

                      There were no problems syncing my test account (with nothing but one contact) and it’s now synced my regular personal email!

                      Would you like me to capture the logs as before, for comparison?

                      I’m going to go study the diff to see what you’ve changed, I’m keen to know more about how this works unde the hood!

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

                        No, no need for other logs at this point.
                        Let me know if you need anything else.

                        Cheers,
                        Sebastian

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