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


> -----Original Message-----
> From: exim-users-bounces@???
> [mailto:exim-users-bounces@exim.org] On Behalf Of Troy Settle
> Sent: 20 July 2005 15:09
>
> DUH!! accept maybe? Let's ignore this part for now though,
> first I want to figure out how to block these role accounts:
>
>    deny senders = admin
>         domains = +local_domains

>
> It didn't block anything, so I tried this as well:
>
>    deny senders = admin@*
>         domains = +local_domains

>
> It blocked external domains as well as locals.
>
> So... how do I block admin@local without blocking admin@external ?



Try this:

  deny 
    senders = admin@*
    sender_domains = +local_domains
    !domains = +local_domains


This will stop any local users sending from the address admin@, but allow
external messages from admin to local users. However I'm not sure that's
what you're trying to achieve.

- Mark