Re: [exim] deny specific senders to a specific address

Página superior
Eliminar este mensaje
Responder a este mensaje
Autor: Tim Jackson
Fecha:  
A: kalinga
Cc: exim-users
Asunto: Re: [exim] deny specific senders to a specific address
On 31 Dec 2004, kalinga kalinga wrote:

> I want to reject all mails from a group of local senders in a file +
> from all external domains which are addressed to a specific address to >
> be bounsed back to the sender with a meaningfull message.
>
> for an example,
>
> joe@??? and jenny@??? should be able to send
> emails to global@??? while all other local user's and
> external domain emails which
> the destination is global@??? will be bounsed back to the
> respective sender.


In your RCPT ACL:

deny message = You are not permitted to send mail to this address
     recipients = global@???
     !senders = joe@??? : jenny@???



Tim