Zimbra Demo from Appforce Day
by Adam Gross on July 10, 2006 at 05:33 PM
One of the more interesting demos from Appforce day was the Salesforce integration demo'd by Zimbra, who provide an open source Exchange server replacement. They have a nice web front end, which not only is full of AJAX goodness, but also essentially has a complete software-free version of Outlook Edition, including the ability to "Send and Add to Salesforce", and drag appointments into your Salesforce calendar. I'm hoping we'll see all the features shown here in their next major release - Zimbra has stated that the integration will be part of the Community (ie free and open source) version of their product. You can see a video of the demo below.
TrackBack
TrackBack URL for this entry: http://www.typepad.com/services/trackback/6a00d8341cded353ef00d8342a1e2253ef
Listed below are links to weblogs that reference Zimbra Demo from Appforce Day:
Tracked on July 12, 2006 06:58 AM:
» slr cameras from slr cameras
apartment new orleans
digital camera hp 850
brooklyn no fee apartments
mi... [Read More]
Tracked on July 17, 2006 08:24 AM:
» mortgage lender york pennsylvania from mortgage lender york pennsylvania
commercial mortgage leads
atlanta ga mortgage company
first mortgage solutions atlanta
[Read More]

Comments
Posted by klm on July 12, 2006 11:21 PM:
woow
Posted by Kingsley Joseph on July 18, 2006 11:32 AM:
snarkWhere did you find such a high-quality video /snark?
Posted by Jacob Minett on August 10, 2006 07:13 AM:
When will the Zimbra for app exchange be available?
Posted by Jacob Minett on August 10, 2006 07:14 AM:
When will the Zimbra for app exchange be available?
Posted by Jay Cihla on October 11, 2006 01:19 PM:
We've just uploaded a brief how-to about the Salesforce Zimlet in Zimbra webmail at: http://www.macwork.com/2006/10/10/how-to-use-the-salesforce-zimlet-in-zimbra-webmail/
Posted by pv42 on August 19, 2008 01:41 PM:
Good tutorial .. I have requirement on drag and drop of an email i need to insert a case in the salesforce for that account . I have modified the code for sforce.js
Com_Zimbra_SForce.prototype.dlg_addNoteToAccounts function by adding the following lines
var jds = [];
for(acctId in accounts){
alert ("Account Id before pushing is " + acctId );
jds.push({ AccountId : acctId });
}
alert("The length of jds is " + jds.length);
for (i = 0; i < jds.length; ++i) {
jds[i].Subject = props.Title;
jds[i].Description = props.Body;
jds[i].Status = 'New';
jds[i].Origin = 'Email';
}
this.createSFObject(jds, "Case", function() {
this.displayStatusMessage("Saved " + jds.length + "My Cases."); });
I get the saved message but the cases are not generated in the salesforce.com website .