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::RBL - mtpolicyd plugin for checking the client-address against an RBL

Author

       Markus Benning <ich@markusbenning.de>

Description

       This plugin queries a DNS black/white list.

Example Dns Blacklist

         <Plugin sorbs.net>
           module = "RBL"
           mode = "passive"
           domain="dnsbl.sorbs.net"
           score = 5
         </Plugin>

Example Dns Whitelist

         <Plugin dnswl.org>
           module = "RBL"
           mode = "accept" # will stop here
           domain="list.dnswl.org"
         </Plugin>

Name

       Mail::MtPolicyd::Plugin::RBL - mtpolicyd plugin for checking the client-address against an RBL

Parameters

       domain (required)
           The domain of the blacklist to query.

       (uc_)enabled (default: on)
           Enable/disable this check.

       (uc_)mode (default: reject)
           reject
               Reject the message. (reject)

           accept
               Stop processing an accept this message. (dunno)

           passive
               Only apply the score if one is given.

       reject_message (default: delivery from %IP% rejected %INFO%)
           A pattern for the reject message if mode is set to 'reject'.

       score (default: empty)
           Apply this score if the check matched.

Version

       version 2.05

See Also