Re: [exim] Accepting email from certain hosts only

Páxina inicial
Borrar esta mensaxe
Responder a esta mensaxe
Autor: Peter Bowyer
Data:  
Para: Exim Users
Asunto: Re: [exim] Accepting email from certain hosts only
On Fri, 12 Nov 2004 08:19:26 -0800, Juan Jose Natera <naterajj@???> wrote:
> Hello,
>
> I have an exim server providing email for many domains, I need exim to
> accept email for some of those domains only if they come from a
> certain host, for example:
>
> example1.com -> accept email normally
> example2.com -> accept email only if it comes from host
> example1.another.example.com


Pretty simple to achieve in rcpt ACL:

accept domains = example1.com

accept domains = example2.com
endpass
hosts = example1.another.example.com


Peter