Navigation

    Kopano
    • Register
    • Login
    • Search
    • Categories
    • Get Official Kopano Support
    • Recent
    1. Home
    2. Synchronising (mobile) devices via Z-Push
    3. Z-Push when using Kopano
    Statement regarding the closure of the Kopano community forum and the end of the community edition
    Log in to post
    • Newest to Oldest
    • Oldest to Newest
    • Most Posts
    • Most Votes
    • A Former User

      z-push log errors
      • A Former User

      2
      0
      Votes
      2
      Posts
      550
      Views

      Manfred

      Hi @ckruijntjens,

      there’s already a thread regarding this issue: https://forum.kopano.io/topic/2269/z-push-2-4-5-sync-issue-0xffffffff8004010f.

      Manfred

    • HS-Systeme

      Kopano and outlook Extention Syncronization loop
      • HS-Systeme

      6
      0
      Votes
      6
      Posts
      567
      Views

      fbartels

      @HS-Systeme said in Kopano and outlook Extention Syncronization loop:

      normaly i cant update other versions as from univention

      Not true when it comes to Kopano and Z-Push: https://kopano.com/blog/staying-up-to-date-with-kopano-releases-on-ucs/

    • pwhooftman

      [FATAL] [pieter] Exception: (ProvisioningRequiredException) - Retry after sending a PROVISION command
      • pwhooftman

      15
      0
      Votes
      15
      Posts
      2160
      Views

      pwhooftman

      Solved!

      After switching over from the Synology package MariaDB10 to a docker container Mysql (and a Phpmyadmin container to administer the Mysql database in that container), all syncing has been flawless. Zero errors and warnings since the completion of the initial sync to my mobile and pc’s.

      So all previous assumptions that the problems had to do with restoring from a previous Koppano install where false.

      Also, i rule out a cause in my specific setup, because i did a complete Synology DSM re-install prior to trying to install and use Kopano4s with MariaDB10. From the very first install attempts a few months back, but also on that freshly installed DSM, i had strange errors where kopano4s could not connect to the database, or would only create like 17 out of the 29 desired tables, or the package had to be restarted twice before the docker container would not crash. In my opinion, Kopano4s and MariaDB10 is a bad combination.

    • righter83

      Error, mapi_msgstore_openentry() failed: 0xFFFFFFFF80070005
      • righter83

      2
      0
      Votes
      2
      Posts
      286
      Views

      Manfred

      Hi @righter83,

      I think it’s related to https://forum.kopano.io/topic/2269/z-push-2-4-5-sync-issue-0xffffffff8004010f.

      Manfred

    • MS-FSTLN

      Autodiscover seems to be broken
      • MS-FSTLN

      5
      0
      Votes
      5
      Posts
      836
      Views

      MS-FSTLN

      Hi Manfred,

      thanks again for your help. And I’m sorry for the late reply.

      I checked my nginx config files again. I made a huge mistake when combining the webapp and z-push configuration because my webserver listens only to one domain.

      So the php-fpm configuration was wrong inside the combined configuration file. After fixing this AutoDiscovery and ActiveSync works both fine.

      For those few who need exactly this or a similar configuration, here are the modifications I made (even if those are not ideal):

      Add the following lines to the end your webapp configuration:

      location /Microsoft-Server-ActiveSync { # If you're using PHP-FPM uncomment the following lines. include fastcgi_params; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param REQUEST_URI $1; fastcgi_param PHP_FLAG "magic_quotes_gpc=off \n register_globals=off \n magic_quotes_runtime=off \n short_open_tag=on"; fastcgi_param PHP_VALUE "post_max_size=20M \n upload_max_filesize=20M \n max_execution_time=3660"; fastcgi_param HTTP_PROXY ""; # Mitigate https://httpoxy.org/ vulnerabilities fastcgi_read_timeout 3660; # Z-Push Ping might run 3600s, but to be safe alias /usr/share/z-push/index.php; access_log /var/log/nginx/z-push-access.log; error_log /var/log/nginx/z-push-error.log; # Attachments ca 15MB max (since binary data needs to be base64 encoded in mine, which results in in about 33% overhead) client_max_body_size 20m; client_body_buffer_size 128k; # Select one of the fastcgi_pass values or adapt to your configuration include snippets/z-push-php.conf; } location /AutoDiscover/AutoDiscover.xml { # If you're using PHP-FPM uncomment the following lines. include fastcgi_params; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param REQUEST_URI $1; fastcgi_param PHP_FLAG "magic_quotes_gpc=off \n register_globals=off \n magic_quotes_runtime=off \n short_open_tag=on"; fastcgi_param PHP_VALUE "post_max_size=20M \n upload_max_filesize=20M \n max_execution_time=3660"; include snippets/z-push-autodiscover.conf; include snippets/z-push-php.conf; } location /Autodiscover/Autodiscover.xml { # If you're using PHP-FPM uncomment the following lines. include fastcgi_params; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param REQUEST_URI $1; fastcgi_param PHP_FLAG "magic_quotes_gpc=off \n register_globals=off \n magic_quotes_runtime=off \n short_open_tag=on"; fastcgi_param PHP_VALUE "post_max_size=20M \n upload_max_filesize=20M \n max_execution_time=3660"; fastcgi_param HTTP_PROXY ""; # Mitigate https://httpoxy.org/ vulnerabilities fastcgi_read_timeout 3660; # Z-Push Ping might run 3600s, but to be safe include snippets/z-push-autodiscover.conf; include snippets/z-push-php.conf; } location /autodiscover/autodiscover.xml { # If you're using PHP-FPM uncomment the following lines. include fastcgi_params; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param REQUEST_URI $1; fastcgi_param PHP_FLAG "magic_quotes_gpc=off \n register_globals=off \n magic_quotes_runtime=off \n short_open_tag=on"; fastcgi_param PHP_VALUE "post_max_size=20M \n upload_max_filesize=20M \n max_execution_time=3660"; fastcgi_param HTTP_PROXY ""; # Mitigate https://httpoxy.org/ vulnerabilities fastcgi_read_timeout 3660; # Z-Push Ping might run 3600s, but to be safe include snippets/z-push-autodiscover.conf; include snippets/z-push-php.conf; }

      And don’t forget to configure your php-fpm settings in /etc/nginx/snippets/z-push-php.conf …I heared that some modules don’t work if you forget this…

      And thanks again to @Manfred for the help

    • A Former User

      Kopano gab not visible in outlook 2016
      • A Former User

      5
      0
      Votes
      5
      Posts
      474
      Views

      fbartels

      KOE 2.1 should have resolved the issue with the gab because of signatures: https://documentation.kopano.io/kopano_changelog/koe.html#kopano-ol-extension-2-1-20-final

    • A Former User

      kopano gab not visiable in outlook 2019
      • A Former User

      19
      0
      Votes
      19
      Posts
      1174
      Views

      Manfred

      Hi @ckruijntjens,

      today I got feedback from a colleague using Office 2019 and Outlook over ActiveSync with KOE. He said that GAB works fine for him.

      Manfred

    • segro

      second source ldap for adressbook
      • segro

      14
      0
      Votes
      14
      Posts
      1599
      Views

      itserv

      If I get you right, you want to use something like a meta-ldap: a single ldap server which combines the results of multiple other ldap servers.

      Check out https://github.com/kgalal/meta-ldap (never tested, first google hit, maybe there are more meta-ldaps).

      Cheers

      Peter

    • imm

      Event deletion not propagating?
      • imm

      7
      0
      Votes
      7
      Posts
      438
      Views

      Manfred

      Hi @imm,

      yes, recreating from scratch and testing if it still happens would be helpful.

      Manfred

    • A Former User

      AD groups used as address lists not visible in Outlook 2016
      • A Former User

      1
      0
      Votes
      1
      Posts
      196
      Views

      No one has replied

    • A Former User

      This topic is deleted!
      • A Former User

      1
      0
      Votes
      1
      Posts
      11
      Views

      No one has replied

    • davodego

      Z-Push Kopano mit Jolla Sailfish Phone
      • davodego

      15
      0
      Votes
      15
      Posts
      1185
      Views

      davodego

      Hello,
      I have made a workaround for this issue. A systemd timer check every 5 minutes if the idle connection on port 443 is established. If not, the EAS-Sailfish Service is restarted. See https://github.com/davodego/connection_check for the files. Maybe it helps. Sailfish isn’t able to repair this bug.

    • gentrix

      Outlook 2019 changed calendar items not synced
      • gentrix

      2
      0
      Votes
      2
      Posts
      234
      Views

      Manfred

      Hi @gentrix,

      try to identify if there’s one Outlook which causes issues. Or if there’s some kind of an appointment which causes issues (e.g. a recurring appointment or a meeting).

      Track the item - which Outlook made change, did other Outlooks sync afterwards and so on.

      If you’re configured mobile devices to sync those calendars, are the changes synced to the mobiles reliably.

      Manfred

    • A Former User

      Z-Push delivers only empty responses
      • A Former User

      3
      0
      Votes
      3
      Posts
      256
      Views

      thctlo

      There is a post of me where this is exactly explained on the forum.
      All you need todo is translate it to nginx, mine is based on apache.
      (sorry, i cant look it up atm).

    • cblaha

      Sync Problem with Outlook iOS
      • cblaha

      6
      0
      Votes
      6
      Posts
      407
      Views

      fbartels

      @cblaha personally I quite like https://www.9folders.com/en/index.html. They also have an iOS version by now but I have never used it.

    • A Former User

      kopano webapp mail and sync zpush
      • A Former User

      2
      0
      Votes
      2
      Posts
      215
      Views

      Manfred

      Hi @ckruijntjens

      is the latest iOS version installed on your iPhone? Did you check z-push.log for errors (maybe the message could not be deleted on the server). What is the time span after deleting the email on the device and opening webapp and seeing that the deletion failed?

      It also sounds a bit like an issue reported here: https://forum.kopano.io/topic/2793/mail-app-ios-13/3.

      Manfred

    • michaelschefczyk

      Z-Push Kopano Debian Buster Packages not syncing
      • michaelschefczyk

      3
      0
      Votes
      3
      Posts
      322
      Views

      michaelschefczyk

      Dear Felix,

      Thank you very much. It seems to work with

      define('BACKEND_PROVIDER', 'BackendKopano');

      in z-push.conf.php

      and

      define('MAPI_SERVER', 'http://localhost:236/kopano');

      in kopano.conf.php in /etc/z-push.

      It might be ideal to provide a sample configuration for z-push.conf.php in the documentation. That way, you would not officially need to support debian package users. But still, people would not get trapped at this point.

      Regards,

      Michael

    • harry63

      Z-Push at Kopano - birthday in contact 1 day early
      • harry63

      13
      0
      Votes
      13
      Posts
      1665
      Views

      genesis74

      Would be great if somebody could take care of this bug eventually.

    • Tommy2002

      StatusException: ExportChangesICS->InitializeExporter(): Error, mapi_exportchanges_config() failed: 0xFFFFFFFF8004010F
      • Tommy2002

      33
      0
      Votes
      33
      Posts
      9552
      Views

      fbartels

      Please continue discussion in https://forum.kopano.io/topic/2269/z-push-2-4-5-sync-issue-0xffffffff8004010f

    • divB

      StatusException: ExportChangesICS->InitializeExporter(): Error, mapi_exportchanges_config() failed: 0x8004010F - code: 12
      • divB

      9
      0
      Votes
      9
      Posts
      730
      Views

      fbartels

      There are multiple threads about this topic already with https://forum.kopano.io/topic/1678/statusexception-exportchangesics-initializeexporter-error-mapi_exportchanges_config-failed-0xffffffff8004010f and https://forum.kopano.io/topic/2269/z-push-2-4-5-sync-issue-0xffffffff8004010f (the longer of the two).

      What is currently missing is a way to reproduce the error, unless we know how to trigger it, it will be hard to fix.

      Closing here.

    • undefined


      •


      Votes

      Posts

      Views