Re: [Exim] exim4 recipient verify .forward filter local_part…

Top Page
Delete this message
Reply to this message
Author: Nico Erfurth
Date:  
To: Exim-users
Subject: Re: [Exim] exim4 recipient verify .forward filter local_part_suffix
Jeff Hahn wrote:

> Everything works fine locally (non-smtp)
>
> mail -s test user-validsuffix@??? </dev/null works fine
>
> mail -s test user-invalidsuffix@??? </dev/null is accepted but
> returned


Add the local_part_suffix* options to your accept router, if you want to
make user-* available for your user, even if the don't user filters.
Otherwise, add a simple accept router with verify = only and your
local_part_suffix* setting, which catches the address.

The problem with the userforward router beeing run at SMTP-time is a
overhead, because exim will fork another process for the filter to be run.

Nico