Search found 6 matches

by pkopacz
Tue Jun 02, 2015 8:33 am
Forum: Zimlets
Topic: Is it possible to find the Zimbra version?
Replies: 0
Views: 1516

Is it possible to find the Zimbra version?

We are migrating from version 7.2 to 8.0 and so different mailstores have different versions of Zimbra installed.  I have Zimlets that I want to run certain code if it is a version 7 mailstore and other code when it is a version 8 mailstore.  Is there anything in the API that I can call that will re...
by pkopacz
Tue May 26, 2015 12:19 pm
Forum: Zimlets
Topic: Toolbar Buttons not clickable when several msg selected
Replies: 3
Views: 4249

Toolbar Buttons not clickable when several msg selected

Did you ever solve this issue? I have the same question. Thanks, Paul
by pkopacz
Wed May 20, 2015 3:32 pm
Forum: Zimlets
Topic: Setting currently displayed folder using JavaScript
Replies: 1
Views: 1759

Setting currently displayed folder using JavaScript

How do I make a particular folder the currently selected folder using JavaScript?   I have a Zimlet that creates a button in the Mail toolbar and want the Inbox to be made the currently displaying folder when this button is clicked.
by pkopacz
Wed May 20, 2015 2:41 pm
Forum: Zimlets
Topic: how add button in toolbar
Replies: 2
Views: 3257

how add button in toolbar

If you are trying to get it working in ZCS 8+, you will need to replace this line:



if (viewId == ZmId.VIEW_CONVLIST || viewId == ZmId.VIEW_TRAD) {



With this:



var viewType = appCtxt.getViewTypeFromId(viewId);

if (viewType == ZmId.VIEW_CONVLIST || viewType == ZmId.VIEW_TRAD) {
by pkopacz
Tue Mar 10, 2015 11:50 am
Forum: Zimlets
Topic: Logging from Zimlets
Replies: 0
Views: 1443

Logging from Zimlets

I have been asked to audit our custom Zimlets and their usage at our site.  I would like to add logging so that when someone uses the function of a Zimlet, this is logged to, for example, mailbox.log.  Is there an API call that I can insert into the JavaScript files of the Zimlets to do this?   Do I...
by pkopacz
Tue Jul 29, 2014 1:51 pm
Forum: Administrators
Topic: Purging after moving accounts (zmmboxmove, zmpurgeoldmbox, zmproxypurge)
Replies: 1
Views: 1449

Purging after moving accounts (zmmboxmove, zmpurgeoldmbox, zmproxypurge)

We would like to move accounts en masse to better balance storage on our mailstore servers. I am curious as to what has to be run after an account is moved with zmmboxmove. Is it necessary to run both zmpurgeoldmbox AND zmproxypurge after each account is moved? If either of the two purge commands ar...