Search found 27 matches

by 12140kapplebaum
Thu Feb 20, 2014 4:54 pm
Forum: Developers
Topic: JavaDocs for Zimbra API
Replies: 2
Views: 1104

JavaDocs for Zimbra API

Links to the various versions (6.0.6 to 8.0.4) are at the API reference page.
by 12140kapplebaum
Fri Sep 27, 2013 9:05 am
Forum: Developers
Topic: Zimbra web-service for external application
Replies: 2
Views: 1108

Zimbra web-service for external application

Sounds like pre-auth may be of help here: Preauth - Zimbra :: Wiki
Best,

Kathy A.
by 12140kapplebaum
Mon Sep 16, 2013 9:14 am
Forum: Developers
Topic: Need guidance about writing an application that uses Zimbra.
Replies: 1
Views: 768

Need guidance about writing an application that uses Zimbra.

Sounds like you'll want to use the SOAP API.
ZCS 6.0:Zimlet Developers Guide:Examples:SOAP API Basics - Zimbra :: Wiki

and

Zimbra SOAP API Reference 8.0.0_GA_5424
are good places to start.
Kathy A.
by 12140kapplebaum
Tue Sep 03, 2013 4:58 pm
Forum: Developers
Topic: HTML Editor - "content initialized" callback (add content to messages when edited)
Replies: 4
Views: 1483

HTML Editor - "content initialized" callback (add content to messages when edited)

Keep appCtxt.getCurrentViewType() in mind for when you switch to Zimbra 8.
Glad">http://www.zimbra.com/forums/zimlets/59 ... mlets.html
Glad it worked for you.

Kathy A.
by 12140kapplebaum
Fri Aug 30, 2013 5:02 pm
Forum: Users
Topic: Can I receive and send Zimbra mail from my Gmail?
Replies: 5
Views: 4310

Can I receive and send Zimbra mail from my Gmail?

Zimbra can certainly forward all your mail to your gmail account -- the exact instructions will vary with the version you are using, but in mine it's Preferences > Mail > Forward a copy to. For sending mail with your school account via gmail, your school can give you the SMTP settings if they allow ...
by 12140kapplebaum
Thu Aug 29, 2013 9:39 am
Forum: Zimlets
Topic: Adding a button to toolbar in mobile version?
Replies: 3
Views: 4428

Adding a button to toolbar in mobile version?

Thanks. Makes my life easy. :)
Kathy A.
by 12140kapplebaum
Thu Aug 29, 2013 9:35 am
Forum: Developers
Topic: Where to put a properties file for custom JAR?
Replies: 3
Views: 1320

Where to put a properties file for custom JAR?

Thanks. Simple is good. I'll bundle it into the Zimlet then.
Best,

Kathy A.
by 12140kapplebaum
Wed Aug 28, 2013 3:20 pm
Forum: Zimlets
Topic: Adding a button to toolbar in mobile version?
Replies: 3
Views: 4428

Adding a button to toolbar in mobile version?

We've made a custom Zimlet that involves adding a new button to the toolbar. Works well, but the button isn't showing in the mobile version. Does the mobile version not implement initializeToolbar? And anyone have any tricks for debugging the mobile version on an Android phone? :D
Kathy A.
by 12140kapplebaum
Wed Aug 28, 2013 2:56 pm
Forum: Developers
Topic: HTML Editor - "content initialized" callback (add content to messages when edited)
Replies: 4
Views: 1483

HTML Editor - "content initialized" callback (add content to messages when edited)

Have you tried

ZmHtmlEditor.prototype.onShowView = function(view) {

if (appCtxt.getCurrentViewType() == ZmId.VIEW_COMPOSE) {

// do some stuff here

}

}?
Does this fire too early for you?
Kathy A.