Postfix Configuration File Plesk Server

Posted on by

Resolved Postfix port 25 not working on fresh installed Onyx Server. Free Download Auslogics Boostspeed 5 Crack. That all your postfix and dovecot configuration files. To the mail server. Modern Plesk.

Postfix Smtp ConfigurationPlesk Server Management

Applicable to: • Plesk 12.5 for Linux • Plesk Onyx for Linux • Plesk 12.0 for Linux Question How to change outbound mail IP address for Postfix, if the primary IP address is blacklisted and mail is not going out? Answer It is hardcoded in the Plesk backend that the IP address for outgoing mail in the Postfix configuration file ( /etc/postfix/master.cf ) will be the same as the interface IP to which Postfix is listening. For example: 203.0.113.2- unix - n n - - smtp -o smtp_bind_address=203.0.113.2 -o smtp_bind_address6= -o smtp_address_preference=ipv4 203.0.113.3- unix - n n - - smtp -o smtp_bind_address=203.0.113.3 -o smtp_bind_address6= -o smtp_address_preference=ipv4 Since Plesk 12.0, the ability to change the outbound mail IP address for Postfix. Please note, that several IP addresses.

For older Plesk versions, the following workaround is available: • Edit the /etc/postfix/master.cf file and replace smtp_bind_address=203.0.113.2 with smtp_bind_address=203.0.113.3. • Restart Postfix: # service postfix restart Note: the default settings in /etc/postfix/master.cf will be restored after mail reconfiguration on any domain. Consider creating a scheduled task to replace /etc/postfix/master.cf with a custom file. The script for the scheduled task would be: #!/bin/bash /bin/grep 'smtp_bind_address=203.0.113.2' /etc/postfix/master.cf if [ $? -ne 1 ]; then /bin/sed -i 's/smtp_bind_address=203.0.113.2/smtp_bind_address=203.0.113.3/g' /etc/postfix/master.cf /etc/init.d/postfix reload fi exit 0.