Search found 101 matches
- Fri Feb 05, 2021 12:11 pm
- Forum: /etc
- Topic: kerio vs zimbra
- Replies: 5
- Views: 1318
Re: kerio vs zimbra
Well Zimbra does have a connector for Outlook that is actively developed, the only way to know if Zimbra works better for you would be to try it out. I will send you a test account, so you can have an initial look. To try out the Outlook connector, you must download a Zimbra 9 trial and set that up,...
- Mon Feb 01, 2021 7:35 am
- Forum: Zimlets
- Topic: Birthday reminder Zimlet "Save & Add Birthday" button not existing
- Replies: 2
- Views: 451
Re: Birthday reminder Zimlet "Save & Add Birthday" button not existing
Seems to just work on Zimbra 9
- Mon Feb 01, 2021 7:19 am
- Forum: Developers
- Topic: Zimbra SOAP connection for AuthToken using WSDL
- Replies: 4
- Views: 4566
Re: Zimbra SOAP connection for AuthToken using WSDL
This one works, used it a couple months back:
https://github.com/zimbra-api/zimbra-api
Also to debug you should send us all the headers you are sending in the requests does does not work. Most likely you are not sending the correct authentication. Try and debug using curl.
https://github.com/zimbra-api/zimbra-api
Also to debug you should send us all the headers you are sending in the requests does does not work. Most likely you are not sending the correct authentication. Try and debug using curl.
- Mon Feb 01, 2021 7:09 am
- Forum: Developers
- Topic: Zimbra - Docker-Compose loop
- Replies: 1
- Views: 594
Re: Zimbra - Docker-Compose loop
The Zimbra image you use, is not maintained, and Zimbra (from the downloads page) is not supported to run in Docker.
If you really want to do this, try and compile from source from https://github.com/Zimbra/zm-build
If you really want to do this, try and compile from source from https://github.com/Zimbra/zm-build
- Thu Jan 07, 2021 8:09 am
- Forum: Installation and Upgrade
- Topic: New Install - Email Delivery Problem
- Replies: 1
- Views: 2593
- Thu Jan 07, 2021 7:41 am
- Forum: Developers
- Topic: tutorial and documentation to start dev?
- Replies: 2
- Views: 693
Re: tutorial and documentation to start dev?
Hello, For Zimbra 9 you can find documentation here: https://wiki.zimbra.com/wiki/DevelopersGuide For Zimbra 8 examples can be found at: https://github.com/zimbra-community API documentation is at: https://wiki.zimbra.com/wiki/Zimlet_Developers_Guide:Zimbra_JavaScript_API_Reference All versions: htt...
- Wed Dec 09, 2020 4:11 pm
- Forum: Administrators
- Topic: zetalliance Group calendars has made the sever inaccessible
- Replies: 8
- Views: 845
Re: ztalliance Group calendars has made the sever inaccessible
rm -Rf /opt/zimbra/lib/ext/de_dieploegers_groupcal
and restart zimbra
and restart zimbra
- Thu Sep 03, 2020 7:40 am
- Forum: Developers
- Topic: Zimbra PHP API!!
- Replies: 2
- Views: 3626
Re: Zimbra PHP API!!
After setting up the php soap as described in https://github.com/zimbra-api/zimbra-api/ it can be used like so: <?php ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL); // This file is generated by Composer require_once 'zimbra-api/vendor/autoload.php'; $api ...
- Thu Sep 03, 2020 7:37 am
- Forum: Zimlets
- Topic: Handle tag remove from an email
- Replies: 2
- Views: 2210
Re: Handle tag remove from an email
For Zimbra 9 there is an example Zimlet that deals with tags https://github.com/Zimbra/zimbra-zimlet-tags
- Thu Sep 03, 2020 7:34 am
- Forum: Developers
- Topic: REST API Get Calendars
- Replies: 3
- Views: 1720
Re: REST API Get Calendars
There are a number of ways to do this. One easy way is to set up preAuth on your domain, that way you can get an authtoken for any user you need to get the calendar of, and then use the REST API as you already now. If you implement your own pre-auth mechanism be careful not to expose/open it to the ...