just noticed something odd in my /etc/postfix/master.cf file

Discussion in 'ISPConfig 3 Priority Support' started by craig baker, Feb 2, 2023.

  1. craig baker

    craig baker Member HowtoForge Supporter

    Was configuring a new server (rocky) and testing my automated perfect server script and I was copying over a copy of master.cf from one of my working servers (to have the correct uncomments as in Perfect Server) and I noticed I have TWO blocks at the end of the file:

    Code:
    127.0.0.1:10025 inet n - n - - smtpd
            -o content_filter=
            -o local_recipient_maps=
            -o relay_recipient_maps=
            -o smtpd_restriction_classes=
            -o smtpd_client_restrictions=
            -o smtpd_helo_restrictions=
            -o smtpd_sender_restrictions=
            -o smtpd_recipient_restrictions=permit_mynetworks,reject
            -o smtpd_end_of_data_restrictions=
            -o mynetworks=127.0.0.0/8
            -o strict_rfc821_envelopes=yes
            -o receive_override_options=no_unknown_recipient_checks,no_header_body_checks
            -o smtp_send_xforward_command=yes
            -o disable_dns_lookups=yes
            -o address_verify_virtual_transport=$virtual_transport
            -o address_verify_transport_maps=$transport_maps
    
    
    127.0.0.1:10027 inet n - n - - smtpd
            -o content_filter=
            -o local_recipient_maps=
            -o relay_recipient_maps=
            -o smtpd_restriction_classes=
            -o smtpd_client_restrictions=
            -o smtpd_helo_restrictions=
            -o smtpd_sender_restrictions=
            -o smtpd_recipient_restrictions=permit_mynetworks,reject
            -o smtpd_end_of_data_restrictions=
            -o mynetworks=127.0.0.0/8
            -o strict_rfc821_envelopes=yes
            -o receive_override_options=no_unknown_recipient_checks,no_header_body_checks
            -o smtp_send_xforward_command=yes
            -o disable_dns_lookups=yes
            -o address_verify_virtual_transport=$virtual_transport
            -o address_verify_transport_maps=$transport_maps
            -o milter_default_action=accept
            -o milter_macro_daemon_name=ORIGINATING
    now why would this block have been duplicated, at a different port?? and which should I delete or does it matter?
    thanks!
    cdb.
     
  2. till

    till Super Moderator Staff Member ISPConfig Developer

    This block is not duplicated. Compare the block in detail; then you see that these are two listeners for different ports, also the rest of them is not identical. And these exists to allow postfix to communicate with other components of your mail setup. So everything is exactly as it should be.
     
  3. craig baker

    craig baker Member HowtoForge Supporter

    thanks just wanted to make sure all was ok!
     

Share This Page