Re: [Exim] internal routing only ACL

Page principale
Supprimer ce message
Répondre à ce message
Auteur: Nico Erfurth
Date:  
À: Test, James
CC: exim-users
Sujet: Re: [Exim] internal routing only ACL
Test, James wrote:
> I have a list of aliases (file called aliases.internal) that I don't
> want to allow incoming external mail to reach, just internal. Does
> anyone know how to configure exim (maybe something in the
> system-filter?) to do that?


maybe

deny message = don't try this
      !senders = *@+local_domains
      condition = ${lookup {$local_part@$domain} lsearch \
                     {/etc/exim/aliases.internal}}



or check in your aliases_internal router for the sender.

Nico