Why there are logs as follows in the /var/log/maillog? Raw postfix/sendmail[3993]: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol postfix/sendmail[3993]: warning: inet_protocols: configuring for IPv4 support only ...
修改ipv4 # vi /etc/postfix/main.cf inet_protocols = all 改为 inet_protocols = ipv4 重启postfix sudo /etc/init.d/postfix restart 参考:https://blog.csdn.net/e_wsq/article/details/77017252
Postfix使用过程中出现以上报错 1.修改网络协议为IP4即可 vi/etc/postfix/main.cf inet_protocols = all改为inet_protocols = ipv4 2.重启postfix,执行以下命令 servicepostfix restart