Re: [exim] Rejecting Recipients at RCPT stage

Top Page
Delete this message
Reply to this message
Author: Graeme Fowler
Date:  
To: Exim-users
Subject: Re: [exim] Rejecting Recipients at RCPT stage
On Mon, 2008-02-18 at 11:05 +0200, Zlatko Mesaros wrote:
>   # MODIFIED PART
>   deny    !verify        = recipient/callout=2m,defer_ok
>   # END MODIFIED PART


You need to add a qualifier in there to ensure it's only doing the call
forward for *your* domains. Without that, you run the risk of being
labelled as an abusive system by remote systems which don't like
callouts.

Assuming you had a domain list called "secondary_domains" you'd make the
config say:

  # MODIFIED PART
  deny    !verify        = recipient/callout=2m,defer_ok
          domains        = +secondary_domains
  # END MODIFIED PART


Graeme