Image caching via Apache to improve performance
Using Apache with the mod_expire module, you can define the Webserver to allow the client to "cache" images within @Mail, including java script and CSS files.
This greatly improves the load-time of the WebMail interface and reduces the bandwidth loads on the server.
Validate you are running Apache with the "expires_module" defined in the httpd.conf . This generally comes installed under Apache 2.X , older Apache 1.X is an option module build.
To enable edit the httpd.conf and define:
ExpiresActive On
ExpiresByType text/css "access plus 1 day"
ExpiresByType text/java script "access plus 1 day"
ExpiresByType image/gif A2592000
ExpiresByType image/jpg A2592000
ExpiresByType image/png A2592000
Next, restart the Webserver and any images used within @Mail are cached for 30-days from the original access-time.

