| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Dovecot POP3サーバの構築」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
40行目: 40行目:
 
  Connection closed by foreign host.
 
  Connection closed by foreign host.
  
[[http://www.atmarkit.co.jp/fnetwork/rensai/netpro07/pop3-commands.html POP3コマンド]]
+
[[http://www.atmarkit.co.jp/fnetwork/rensai/netpro07/pop3-commands.html POP3コマンド]] |

2020年2月15日 (土) 08:35時点における版

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を追加 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.

[POP3コマンド] |