Initialize the mailet.
//Parse the condition...
StringTokenizer st = new StringTokenizer(getCondition(), ", ", false);
//..into a vector of domain names.
senderHosts = new java.util.HashSet();
while (st.hasMoreTokens()) {
senderHosts.add(st.nextToken().toLowerCase(Locale.US));
}
senderHosts = Collections.unmodifiableCollection(senderHosts);