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

MyMemoWiki

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

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
1行目: 1行目:
==Dovecot POP3サーバの構築==
+
==[[Dovecot POP3サーバの構築]]==
  
 
====インストール====
 
====インストール====
16行目: 16行目:
  
 
=====ファイヤーウォール=====
 
=====ファイヤーウォール=====
その他のポートに、110、143を追加
+
[[その他]]のポートに、110、143を追加
 
[[File:0395_dovecot01.jpg]]
 
[[File:0395_dovecot01.jpg]]
 
====起動====
 
====起動====
 
=====起動=====
 
=====起動=====
  # /sbin/service dovecot start
+
  # /sbin/ser[[vi]]ce dovecot start
 
=====起動設定=====
 
=====起動設定=====
  # /sbin/chkconfig dovecot on
+
  # /sbin/[[chkconfig]] dovecot on
  # /sbin/chkconfig --list | grep dovecot
+
  # /sbin/[[chkconfig]] --list | grep dovecot
  
 
====動作確認====
 
====動作確認====
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月16日 (日) 04:24時点における最新版

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コマンド