String condition = getCondition();
if(condition == null || condition.indexOf(";") == -1)
throw new MessagingException("Invalid matcher configuration: "+condition);
int pos = condition.indexOf(";");
sourceAttribute = condition.substring(0,pos).trim();
check = condition.substring(pos+1, condition.length());