10-10-2006 06:28 AM
03-16-2007 03:55 AM
03-16-2007 07:50 AM
this.currentWizardState = new WizardState(config, wizard);
String to = (String)ruleAction.getParameterValue(PARAM_TO);
if (to == null)
{
Object obj = ruleAction.getParameterValue(PARAM_TO_MANY);
if (obj != null)
{
to = obj.toString();
}
}
logger.error("Failed to send email to " + to, e);
03-23-2007 03:59 AM
03-26-2007 09:05 AM
03-27-2007 05:16 AM
edit /root/.mailcap
delete -e illegal entry
07-05-2007 03:37 PM
In org.alfresco.web.bean.wizard.WizardManager in the setCurrentWizard() method move the following line before the call to wizard.init()this.currentWizardState = new WizardState(config, wizard);
Change the catch block in org.alfresco.repo.action.executer.MailActionExecuter to read as follows:String to = (String)ruleAction.getParameterValue(PARAM_TO);
if (to == null)
{
Object obj = ruleAction.getParameterValue(PARAM_TO_MANY);
if (obj != null)
{
to = obj.toString();
}
}
logger.error("Failed to send email to " + to, e);
08-21-2008 05:06 PM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.