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...)
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.