Welcome, if you would like to post a comment please register.
We also encourage you to explore all things Zimbra with our team and members of the community.
I've installed the ubuntu version of Zimbra (dev team... thx) Everything installed wonderfully except for a couple of things. I can't seem to get the server statistics graphs to display. Seems that the image link are broken, it only displays the image missing icon where the graphs should be. Not sure what to do about that!
Second thing is I can't get the zimlets to work. I'd like to get the yahoo maps zimlets especially. I managed to list my zimlets and I get the following:
zimbra@mail:~/zimlets-extra$ zmzimletctl listZimlets
Installed Zimlet files on this host:
com_zimbra_date
com_zimbra_email
com_zimbra_phone
com_zimbra_photo
com_zimbra_url
com_zimbra_ymaps
Installed Zimlets in LDAP:
com_zimbra_date
com_zimbra_email
com_zimbra_phone
com_zimbra_photo
com_zimbra_url
com_zimbra_ymaps
Available Zimlets in COS:
default:
com_zimbra_date
com_zimbra_email
com_zimbra_phone
com_zimbra_photo
com_zimbra_url
com_zimbra_ymaps
But when I check my email that contain addresses the zimlet does not work like expected. Did I miss a step? Any suggestions would be appreciated!
I'd like to get the yahoo maps zimlets especially.
It seems the YahooMap zimlet does not work outside of the USA (both because YahooMap is not available for each country and because the regexp is not able to catch out-USA addresses) : be sure to test it on an USA address.
I experience the same problem, me too installing Zimbra 4.02 over Ubuntu Server 6:
the problem occurs also including images in documents, showing a broken link icon.
Is it missing any graphics library?
I use Firefox 1.5.0.7.
Best Regards
Danilo
thx for the reply. Are you refering to the /var/log/zimbra.log? I don't see anything about statistics in there. Just the status of the zimbra services.
Searching in logs I have found a couple of errors, about missing DBI and DBD::mysql, so I installed on Ubuntu server 6 the packages libdbi-perl and libdbd-mysql-perl and (after a reboot) the graphs for server statistics display, but disk quota shows no bars.
I'm not sure, but I think you need the files indicated in the tag include, for example ymaps.js, ymaps.css and so on ... if anybody solve the problem please post the solution ! 10x
nadia, the stats in the admin console come from data in the logger mysql db, which in turn is derived from the /var/log/zimbra.log. you can connect to the logger db and review some of the data like this:
su - zimbra
logmysql zimbra_logger
show tables;
select * from service_status;
select * from processing_history;
select * from mta_aggregate;
...
nadia, the stats in the admin console come from data in the logger mysql db, which in turn is derived from the /var/log/zimbra.log. you can connect to the logger db and review some of the data like this:
su - zimbra
logmysql zimbra_logger
show tables;
select * from service_status;
select * from processing_history;
select * from mta_aggregate;
...