February 28, 2007

 Upgrading to the new @Mail 5.0 PHP release

Migrating from the Webmail client in Perl to @Mail PHP:This tutorial is for migrating from @Mail Perl, to the latest version @Mail PHP v5 for the Webmail client. The Email-server/Webmail edition of @Mail will be available in PHP on the 14th March 2007.

(more...)


Filed under: Installation, Migration, PHP version, Perl version — info @ 9:35 am

 

February 13, 2007

 Compose page causes high CPU usage on IE7

The Compose page can create 100% CPU usage at times. To fix this, just do the following:- open up: /usr/local/atmail/webmail/java script/innovaeditor/editor.js

- find the following lines:

function editorDoc_onkeyup(oName)
{
if(eval(oName).isAfterPaste)
{
eval(oName).cleanDeprecated();

//*** RUNTIME STYLES ***
eval(oName).runtimeBorder(false);
eval(oName).runtimeStyles();
//***********************
eval(oName).isAfterPaste=false;
}
realTime(oName);
}

- change the lines so it looks like:

function editorDoc_onkeyup(oName)
{
if(eval(oName).isAfterPaste)
{
eval(oName).cleanDeprecated();

//*** RUNTIME STYLES ***
eval(oName).runtimeBorder(false);
eval(oName).runtimeStyles();
//***********************
eval(oName).isAfterPaste=false;
}
//realTime(oName);
}

This will then fix the problem.


Filed under: Interface — info @ 5:32 am