Re: [exim] Allow/Deny messages based on Sending IP ?

Pàgina inicial
Delete this message
Reply to this message
Autor: Jakob Hirsch
Data:  
A: Adrian, 'Exim-users'
CC: 
Assumpte: Re: [exim] Allow/Deny messages based on Sending IP ?
Adrian wrote:

> How do I tell Exim on the final server to only allow messages
> from (a) the gateway machine, and (b) the client IPs so they
> can send mail out - these are already stored on a file.


Put this after acl_check_rcpt:

deny hosts = ! 1.2.3.4 : ! /list/of/your/clients
      message = Please deliver through MX


(where 1.2.3.4 ist the ip address of your MX)