Stop

Syntax

stop;

Description

The "stop" action ends all processing. If no actions have been executed, then the keep action is taken.

Example

require "reject";

# Reject any large messages
if size :over 1M
{
  reject text: "Do not send me large attachments";
  # Stops the Script execution immediately
  stop;
}

# Do more processing...

Module

Core : Requires no import statement

Resources

RFC3028