Re: [Exim] Block user-at-domain.tld file list

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Tim Jackson
Fecha:  
A: exim-users
Asunto: Re: [Exim] Block user-at-domain.tld file list
Hi Email-Lists, on Sun, 24 Aug 2003 22:13:13 +0200 you wrote:

> i'm new in Exim and i would like to have a text file which have, in each
> line, email addresses to be blocked.
> How can i implement this in Exim 4.20 ??


In your RCPT ACL:

deny message = Blacklisted for spamming
senders = lsearch;/path/to/your/text/file

Also, if you change the senders line to this:

senders = lsearch;/whatever:*@lsearch;/whatever

then you can also blacklist a whole domain just by dropping it (the domain
name) into the file, which is more useful. (or you could do it with a
separate ACL rule).

Tim