ACCEPT action

<< Click to Display Table of Contents >>

Navigation:  Event and Object Analysis > Capture Results Filtering > Filtration Basics > Rules > Actions >

ACCEPT action

Pass the message for further processing.

Description

The ACCEPT stops filtering for the current message and immediately passes it for further processing (i.e. delivery based on a predefined or the default delivery profile).

Format

<action name="accept" />

The "name" attribute:

The name attribute contains the action name: name="accept".

Example:

All messages that reach this rule are accepted for further processing.

<?xml version="1.0" encoding="utf-8"?>
<filter name="Message filter" version="1.0">
 <comment>Message filter.</comment>
 
 <table name="main">
   <rule enabled="1">
     <match ...> ... </match>
     <action ...> ... </action>
   </rule>
 
   <rule enabled="1">
     <comment>
       All the messages reaching this rule are accepted for
       further processing.
     </comment>
     <action name="accept" />
   </rule>
 </table>
</filter>