RE: [exim] anti-spoof acl rules

Pàgina inicial
Delete this message
Reply to this message
Autor: Mark Smith
Data:  
A: exim-users
Assumpte: RE: [exim] anti-spoof acl rules

>From: exim-users-bounces@???
>[mailto:exim-users-bounces@exim.org] On Behalf Of Troy Settle


> Actually, I want to prevent /anyone/anything/ from sending
> /any/ email that appears to be from admin@ or webmaster@ or
> any other role account.
> I don't care if they're local or remote.
>


In that case, just use:

addresslist whitelist_roles = wildlsearch;/etc/whitelist_roles

  deny
    !senders = +whitelist_roles
    senders  = admin@* : webmaster@*


and put the addresses you want to allow into whitelist_roles.

- Mark