i'll check on steel and get back to you
ZmSetting.
js:
For v4.x, look in ZmSetting.
js located under
/ZimbraWebClient/WebRoot/js/zimbraMail/share/model/
There is a constant (there is a bug to fix this) called "LOGO_URI" defining the url to use for the logo.
Once you modify this file, you'll have to redeploy the webclient:
- For example, under /ZimbraWebClient, run "ant prod-deploy" to deploy the production build.
Other notes-
ZimbraMail_all.js (though this should have been fixed after 4.5.3/4):
.
cd /opt/zimbra/tomcat/webapps/zimbra/js
. gzip -d -S .zgz ZimbraMail_all.js.zgz
. Edit ZimbraMail_all.js
. Search for the following setting: ZmSetting.INIT[ZmSetting.LOGO_URI]
. Change this value to your URL
. Save this File
. gzip -S .zgz ZimbraMail_all.js
also:
/ZimbraWebClient/WebRoot/skins/_base/base/base.html
logout_button : { style:"link", container:"quota" }
logout_button : { style:"link", container:"quota" },
This line might be missing:
logo : { url: "@LogoURL@" }
another thing to check:
/opt/zimbra/tomcat/webapps/zimbra/skins/_base/base_side/base.css logo property might be missing. So add the logo property in skin.hints.
skin.hints = {
app_chooser : { style:"chiclet", direction:"TB" },
help_button : { style:"link", container:"app_chooser" },
logout_button : { style:"link", container:"app_chooser" },
This line might be missing:
logo : { url: "@LogoURL@" }
}
Nothing like a bunch of different changes + the new skinning method...in 5.x you'll need to modify the skin.properties file for the skin you want to change. There should be a more comprehensive list 'theme/skin 2.0' changes once v5 is released.