1、Dovecot起動でエラー
Dovecot Imap を起動中: Error: socket() failed: Address family not supported by protocol
Error: service(pop3-login): listen(::, 110) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
IPv4 だけをリッスンするようにする。
# vi /etc/dovecot/dovecot.conf
listen = *, ::
↓
listen = *
Dovecot Imap を起動中: Error: socket() failed: Address family not supported by protocol
Error: service(pop3-login): listen(::, 110) failed: Address family not supported by protocol
Error: socket() failed: Address family not supported by protocol
IPv4 だけをリッスンするようにする。
# vi /etc/dovecot/dovecot.conf
listen = *, ::
↓
listen = *