On 2009-11-16 at 07:04 -0800, mkp_71 wrote:
> Hi, i have mail server with exim+spamassassin, some of users start to get
> message from MAILER-DAEMON or mail delivery subsystem. What i need to change
> in exim to reject them. This is my exim.conf:
> begin routers
>
>
> spamassassin_router:
> driver = accept
> transport = spamassassin
> condition = ${if eq {$received_protocol}{smtp}{}}
> # no_verify
> # no_expn
Uncomment no_verify.
Currently, this Router accepts all mail. So all addresses verify. For
the purposes of verification, you want to pretend this step is not
present.
-Phil