969 バイト追加
、 2020年2月15日 (土) 07:31
==Dovecot POP3サーバの構築==
====インストール====
# yum install dovecot
# rpm -qa dovecot
dovecot-1.0.0-3.fc6
====設定====
/etc/dovecot.conf
=====プロトコル=====
コメント解除
protocols = imap imaps pop3 pop3s
=====メールボックス=====
※旧 default_mail_env
mail_location = maildir:~/Mailbox
=====ファイヤーウォール=====
その他のポートに、110、143を追加
[[File:0395_dovecot01.jpg]]
====起動====
=====起動=====
# /sbin/service dovecot start
=====起動設定=====
# /sbin/chkconfig dovecot on
# /sbin/chkconfig --list | grep dovecot
====動作確認====
# telnet localhost 110
Trying 127.0.0.1...
Connected to localhost.localdomain (127.0.0.1).
Escape character is '^]'.
+OK Dovecot ready.
USER [username]
+OK
PASS [password]
+OK Logged in.
quit
+OK Logging out.
Connection closed by foreign host.
[http://www.atmarkit.co.jp/fnetwork/rensai/netpro07/pop3-commands.html POP3コマンド]