Re: [Exim] disabling sender verification for one domain

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Andreas Metzler
Fecha:  
A: exim-users
Asunto: Re: [Exim] disabling sender verification for one domain
On Sat, Aug 23, 2003 at 06:28:48PM -0600, Vincent Danen wrote:
> --
> This is probably a dumb question but it has me stumped.
>
> exim is happily bouncing mails from my internal LAN which have a nonexistant
> domain of "linsec.vx", so mail from root@??? is bouncing
> because it can't do a sender verify. I like having the sender verify there
> but want to exclude @.*linsec.vx from the domains that get the verify.

[...]
> accept hosts = :
> deny   local_parts = ^.*[@%/|] : ^\\.
> accept local_parts = postmaster
>        domains - +local_domains
> require verify = sender

[...]

Replacing "require verify = sender" with

deny !sender_domains = *.linsec.vx : linsec.vx
     !verify = sender


should do the trick. Untested.
             cu andreas
PS: I strongly suggest printing the section about ACLs from spec.pdf,
it helps _a_ _lot_.