}
public DefaultEscalatedDeadlineHandler() {
handler = new EmailWorkItemHandler();
ChainedProperties conf = new ChainedProperties("drools.email.conf");
String host = conf.getProperty( "host", null );
String port = conf.getProperty( "port", "25" );
from = conf.getProperty( "from", null );
replyTo = conf.getProperty( "replyTo", null );
handler.setConnection( host, port, null, null );
}