* @see org.apache.james.transport.MailProcessor#service(org.apache.mailet.Mail)
*/
public void service(Mail mail) throws MessagingException {
MailProcessor processor = getProcessor(mail.getState());
if (processor != null) {
processor.service(mail);
} else {
throw new MessagingException("No processor found for mail " + mail.getName() + " with state " + mail.getState());
}
}