Matches mails that are sent by a null sender.
<mailet match="SenderIsNull" class="<any-class>">
if (mail.getSender() == null) { return mail.getRecipients(); } else { return null; }