matcher = new Or();
FakeMatcherConfig mci = new FakeMatcherConfig("Or",context);
matcher.init(mci);
Matcher child = null;
FakeMatcherConfig sub = null;
child = new RecipientIs();
sub = new FakeMatcherConfig("RecipientIsRegex=test@james.apache.org",context);
child.init(sub);
matcher.add(child);
child = new RecipientIs();
sub = new FakeMatcherConfig("RecipientIsRegex=test2@james.apache.org",context);
child.init(sub);
matcher.add(child);
}