logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Mail::MtPolicyd::Plugin::RegexList - mtpolicyd plugin for regex matching

Author

       Markus Benning <ich@markusbenning.de>

Description

       This plugin matches a value against a list of regular expressions and executes an action if it matched.

   PARAMETERS
       The module takes the following parameters:

       (uc_)enabled (default: "on")
           Could be set to 'off' to deactivate check. Could be used to activate/deactivate check per user.

       key (default: "request:client_address")
           Field to query.

       invert (default: 0)
           If set to 1 the logic will be inverted.

       regex (default: empty)
           One or more regular expressions

       file (default: empty)
           A file to load regular expressions from.

           One regex per line. Empty lines and lines starting with # will be ignored.

       By default the plugin will do nothing. One of the following actions should be specified:

       action (default: empty)
           If given this action will be returned to the MTA if the SQL query matched.

       score (default: empty)
           If given this score will be applied to the session.

       Plugin (default: empty)
           Execute this plugins when the condition matched.

Name

       Mail::MtPolicyd::Plugin::RegexList - mtpolicyd plugin for regex matching

Synopsis

         <Plugin regex-whitelist>
           module = "RegexList"
           key = "request:client_name"
           regex = "^mail-[a-z][a-z]0-f[0-9]*\.google\.com$"
           regex = "\.bofh-noc\.de$"
           # file = "/etc/mtpolicyd/regex-whitelist.txt"
           action = "accept"
         </Plugin>

Version

       version 2.05

See Also