Re: [exim] Accepting email from certain hosts only

トップ ページ
このメッセージを削除
このメッセージに返信
著者: Peter Bowyer
日付:  
To: Exim Users
題目: 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