send-mail: warning: inet_protocols: IPv6 support is disabled: Address family

来源:互联网 发布:商友软件 编辑:程序博客网 时间:2024/06/05 09:38

Postfix使用过程中出现如下报错,我们将网络协议指定为IP4即可.

send-mail: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol
send-mail: warning: inet_protocols: configuring for IPv4 support only
postdrop: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol
postdrop: warning: inet_protocols: configuring for IPv4 support only

查看当前inet_protocols

修改ipv4

# vi /etc/postfix/main.cf
inet_protocols = all
改为
inet_protocols = ipv4


重启postfix

sudo /etc/init.d/postfix restart