There is nothing like this planned in the near term, but this might be a nice idea. One question though, since we might want to reject on the MAIL FROM or the RCPT TO commands, how do you determine when to run the matchers? Or perhaps you set 2 separate sets of matchers to do this. The matcher may not be the perfect API to support it though, but perhaps you pass it a fake Mail object, with an exception if you try to access the MimeMessage object, so matchers that access only sender or recipients (and other delivery information) will still work.
Serge Knystautas Loki Technologies - Unstoppable Websites http://www.lokitech.com/ ----- Original Message ----- From: "Rauno Palosaari" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, December 04, 2001 8:38 AM Subject: Future versions of James Is there any plans for implementing a matcher/mailet alike prosessor chain for James while receiving mail? Something like: <smtphandler> <processor name="helo"> <mailet match="SenderInFakeDomain" class="Fail"> </mailet> </processor> <processor name="mail"> <mailet match="InSpammerBlacklist" class="Null"> </mailet> </processor> <processor name="data"> <!-- test if a local address has been supplied with rcpt to earlier --> <mailet match="!RecipientIsLocal" class="Fail"> </mailet> </processor> </smtpmanager> -rauno -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]> -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
