Scroll to navigation

Mail::MtPolicyd::Plugin::SMTPVerify(3pm) User Contributed Perl Documentation Mail::MtPolicyd::Plugin::SMTPVerify(3pm)

NAME

Mail::MtPolicyd::Plugin::SMTPVerify - mtpolicyd plugin for remote SMTP address checks

VERSION

version 2.05

DESCRIPTION

This plugin can be used to do remote SMTP verification of addresses.

Example

To check if the recipient exists on a internal relay and mailbox is able to receive a message of this size:

  <Plugin smtp-rcpt-check>
    module = "SMTPVerify"
    
    host = "mail.company.internal"
    sender_field = "sender"
    recipient_field = "recipient"
    # send SIZE to check quota
    size_field = "size"
    temp_fail_action = "defer %MSG%"
    perm_fail_action = "reject %MSG%"
  </Plugin>

Do some very strict checks on sender address:

  <Plugin sender-sender-check>
    module = "SMTPVerify"
    # use a verifiable address in MAIL FROM:
    sender = "horst@mydomain.tld"
    recipient_field = "sender"
    no_starttls_action = "reject sender address does not support STARTTLS"
    temp_fail_action = "defer sender address failed verification: %MSG%"
    perm_fail_action = "reject sender address does not accept mail: %MSG%"
  </Plugin>

Or do advanced checking of sender address and apply a score:

  <Plugin sender-sender-check>
    module = "SMTPVerify"
    # use a verifiable address in MAIL FROM:
    sender = "horst@mydomain.tld"
    recipient_field = "sender"
    check_tlsa = "on"
    check_openpgp = "on"
    temp_fail_score = "1"
    perm_fail_score = "3"
    has_starttls_score = "-1"
    no_starttls_score = "5"
    has_tlsa_score = "-3"
    has_openpgp_score = "-3"
  </Plugin>

Based on the score you can later apply greylisting or other actions.

Configuration

Parameters

The module takes the following parameters:

(uc_)enabled (default: on)
Enable/disable this check.
If defined this host will be used for checks instead of a MX.
Port to use for connection.
Set to 'on' to enable check if an TLSA record for the MX exists.

This requires that your DNS resolver returns the AD flag for DNSSEC secured records.

Set to 'on' to enable check if an OPENPGPKEY records for the recipients exists.
Field to take the MAIL FROM address from.
If set use this fixed sender in MAIL FROM instead of sender_field.
Field to take the RCPT TO address from.
Field to take the message SIZE from.
Action to return if the remote server returned an permanent error for this recipient.

The string "%MSG%" will be replaced by the smtp message:

  perm_fail_action = "reject %MSG%"
    
Like perm_fail_action but this message is returned when an temporary error is returned by the remote smtp server.

  temp_fail_action = "defer %MSG%"
    
Score to apply when a permanent error is returned for this recipient.
Score to apply when a temporary error is returned for this recipient.
Score to apply when the smtp server of the recipient announces support for STARTTLS extension.
Score to apply when there is a TLSA or no TLSA record for the remote SMTP server.
Score to apply when a OPENPGPKEY record for the recipient exists or not exists.

AUTHOR

Markus Benning <ich@markusbenning.de>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2014 by Markus Benning <ich@markusbenning.de>.

This is free software, licensed under:

  The GNU General Public License, Version 2, June 1991
2021-12-15 perl v5.32.1