>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