CentOS7

dovecotの110番と143番のポート閉鎖

993番(imaps)と995番(pop3s)しか使わない場合、110番と143番は閉鎖しても問題ない。

※IMAP(143)を閉鎖すると、roundcubeMailにログインできなくなる。原因は調査中。

[root@localhost ~]# tail -f /var/log/maillog でログを確認しながら調査

[root@localhost ~]# vi /etc/dovecot/conf.d/10-master.conf
service imap-login {
inet_listener imap {
#port = 143
port = 0       ←追加
}
inet_listener imaps {
#port = 993
#ssl = yes
}
service pop3-login {
inet_listener pop3 {
#port = 110
port = 0 ←追加
}
inet_listener pop3s {
#port = 995
#ssl = yes
}
}

トップ   編集 凍結 差分 履歴 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2018-08-08 (水) 08:43:36