A request was
posted on the Opera forums looking for "volunteers" to figure out Opera's problems with Zimbra. I guess I'm the first "volunteer"
Here's what I've found:
Opera's error console reports a compilation error in the file
http://demo.zimbra.com/zimbra/js/Zim....zgz?v=xxxxxxx at line 9553 (or thereabouts). The line in question is:
Code:
document.getElementById(this._idBorderCollapse).checked=/collapse/i.test(_8ab);
I couldn't see anything wrong with that, but changed it to:
Code:
document.getElementById(this._idBorderCollapse).checked=(_8ab.match(/collapse/i)!=null);
which resolved the error.
I also noticed while troubleshooting that the HTTP responses for the requests for
http://demo.zimbra.com/zimbra/js/Zim...l.js.zgz?v=xxx and
http://demo.zimbra.com/zimbra/js/Ajax_all.js.zgz?v=xxx do not have the required Content-Type header ("text/javascript"). I had to use The Proxomitron to temporarily fix the headers.
After that I ended up with a network error and couldn't proceed. Maybe if the above was fixed I might be able to proceed further?
Edit: To clarify, the "network error" was in a Zimbra alert box of some sort, not an actual network error between me and Zimbra!