Alexander,

your configuration example:


<smtp-processor>
    <!-- Sender based checks. -->
    <matcher class="SenderCheck">
        <command> MAIL FROM </command>
        <action> accept </action>
        <code> 220 </code>
        <description> ... </description>
    </matcher>

</smtp-processor>



Looks just fine, very close to what I imagined.
What I can't understand is how you could use "Matchers" before you have a
complete "Mail".

My own idea config would look like:

<smtpHandler>
  <!-- Sender based checks. -->
  <commandHandler class="Mail">
    <!-- Handle MAIL -->
    <command>MAIL</command>
    <!-- MAIL expects FROM -->
    <commandHandler class="MailFrom">
      <command>FROM</command>
      <!-- process a rule -->
      <rule class="SenderCheck">
        <!-- if message matches use this response -->
        <code>5xx</code>
        <description>foo-barred</description>
      </rule>
      <accept-rule class="accept">
        <!-- if message isn't matched by any rules use this "special" rule
to accept -->
        <code>220</code>
        <description>OK</description>
      </accept-rule>
    </commandHandler>
  </commandHandler>
</smtpHandler>


***************************************************************************
The information in this e-mail is confidential and for use by the addressee(s) 
only. If you are not the intended recipient (or responsible for delivery of the 
message to the intended recipient) please notify us immediately on 0141 306 
2050 and delete the message from your computer. You may not copy or forward it 
or use or disclose its contents to any other person. As Internet communications 
are capable of data corruption Student Loans Company Limited does not accept 
any  responsibility for changes made to this message after it was sent. For 
this reason it may be inappropriate to rely on advice or opinions contained in 
an e-mail without obtaining written confirmation of it. Neither Student Loans 
Company Limited or the sender accepts any liability or responsibility for 
viruses as it is your responsibility to scan attachments (if any). Opinions and 
views expressed in this e-mail are those of the sender and may not reflect the 
opinions and views of The Student Loans Company Limited.

This footnote also confirms that this email message has been swept for the 
presence of computer viruses.

**************************************************************************

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to