logwatchが何やらワーニングメッセージを吐き出してる。
sendmail: warning: inet_protocols: IPv6 support is disabled: Address family not supported by protocol
sendmail: 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
IPV6関係の設定に問題が多いなぁ・・
このワーニングメッセージはシステムはIPV6を停止しているのにpostfixがIPV4/IPV6両対応の為発生する。
postfixの設定ファイルを編集してIPV4のみのサポート状態に設定を変更する。
# vi /etc/postfix/main.cf
#inet_protocols = all
inet_protocols = ipv4
そしてpostfixを再起動して暫く様子を見る。
/etc/init.d/postfix restart