El 12/2/20 a las 20:14, Wietse Venema escribió:
Emanuel:
Is it possible to create different files with different IP addresses so
that when sending an email they are sent from different round maps?
You would use master.cf entries with different smtp_bind_address or
smtp_bind_address6 settings, and select one with a filter command.

With master.cf entries

/etc/postfix/master.cf:
     relay-1     unix  -       -       n       -       -       smtp
         -o smtp_bind_address=1.2.3.1
     relay-2     unix  -       -       n       -       -       smtp
         -o smtp_bind_address=1.2.3.2
     relay-3     unix  -       -       n       -       -       smtp
         -o smtp_bind_address=1.2.3.3
     relay-4     unix  -       -       n       -       -       smtp
         -o smtp_bind_address=1.2.3.4

Then you need a nested table which requires a restriction class.

/etc/postfix/main.cf:
     smtpd_client_restrictions = check_client_access
        inline:{
           { 200.58.x.x = class1 }
           { 200.58.x.y = class2 }
        }

     restriction_classes = class1, class2
     class1 = check_client_access randmap:{filter relay-1:, filter relay-2:}
     class2 = check_client_access randmap:{filter relay-3:, filter relay-4:}

Instead of inline:{}, a hash or pcre table would work too.

YES.! i need this!

so I can call a file and indicate the class, this is very useful?

/etc/postfix/main.cf:
    smtpd_client_restrictions = check_client_access
    inline:{
       { hash:/etc/postfix/bad_client = class1 }
       { hash:/etc/postfix/bad_client = class2 }
    }

Thanks so much, for your help.


        Wietse
--
envialosimple.com <http://www.envialosimple.com>  
Emanuel Gonzalez
IT / Departamento Emails
emanuel.gonza...@donweb.com <mailto:emanuel.gonza...@donweb.com>
www.envialosimple.com <http://www.envialosimple.com>
by donweb <http://www.envialosimple.com>

Nota de confidencialidad: Este mensaje y archivos adjuntos al mismo son confidenciales, de uso exclusivo para el destinatario del mismo. La divulgación y/o uso del mismo sin autorización por parte de DonWeb.com queda prohibida. DonWeb.com no se hace responsable del mensaje por la falsificación y/o alteración del mismo. De no ser Ud el destinatario del mismo y lo ha recibido por error, por favor, notifique al remitente y elimínelo de su sistema. Confidentiality Note: This message and any attachments (the message) are confidential and intended solely for the addressees. Any unauthorised use or dissemination is prohibited by DonWeb.com.
DonWeb.com shall not be liable  for the message if altered or falsified.
If you are not the intended addressee of this message, please cancel it immediately and inform the sender Nota de Confidencialidade: Esta mensagem e seus eventuais anexos podem conter dados confidenciais ou privilegiados. Se você os recebeu por engano ou não é um dos destinatários aos quais ela foi endereçada, por favor destrua-a e a todos os seus eventuais anexos ou copias realizadas, imediatamente. É proibida a retenção, distribuição, divulgação ou utilização de quaisquer informações aqui contidas. Por favor, informenos sobre o recebimento indevido desta mensagem, retornando-a para o autor.

Reply via email to