CentOS6/Dovecot
をテンプレートにして作成
[
トップ
] [
新規
|
一覧
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
&tag(CentOS6/Doveot);
*目次 [#u5593ce4]
#contents
*参考情報 [#v92e9c8f]
-[[HowTo/CRAM-MD5 - Dovecot Wiki:http://wiki.dovecot.org/...
-[[CentOS 6.2 で dovecot 2.0 の設定:http://futuremix.org/...
-[[PODOMA [Fool For the City]:http://no-monogatari.com/do...
-[[できないSEの色々 - 前提など [04-06_Dovecot設定] - Tech...
-[[dovecot-2.0.x ハマリ道 - TenForwardの日記 (defiantの日...
*前提 [#n7234fa7]
-IMAPサーバー。
-安全のためIMAP over SSLを使って接続する場合の設定例。
*インストール [#idab3f45]
-yumでインストール
# yum install dovecot
-起動&自動起動
# /etc/rc.d/init.d/dovecot start
# chkconfig dovecot on
*設定 [#zb0e769a]
-設定ファイルがDovecot2.0から細かく分かれてしまったので以...
**dovecot.confの設定 [#o5c4e5ae]
-/etc/dovecot/dovecot.confを編集する。protocolsをimapだけ...
#pre{{
protocols = imap
}}
**10-master.confの編集 [#aaea8f28]
-/etc/dovecot/conf.d/10-master.confを編集する。[[dovecot-...
#pre{{
service imap-login {
inet_listener imap {
port = 0
}
inet_listener imaps {
port = 993
ssl = yes
}
}
}}
**10-ssl.confの設定 [#d92862c1]
-/etc/dovecot/conf.d/10-ssl.confを編集。
#pre{{
ssl = yes
}}
**10-auth.confの設定 [#dccd3c04]
-/etc/dovecot/conf.d/10-auth.confを編集。
#pre{{
disable_plaintext_auth = no
auth_mechanisms = cram-md5
#!include auth-system.conf.ext
!include auth-passwdfile.conf.ext
}}
**auth-passwdfile.conf.extの設定 [#u29eaecb]
/etc/dovecot/conf.d/auth-passwdfile.conf.extを編集。
#pre{{
passdb {
driver = passwd-file
# args = scheme=CRYPT username_format=%u /etc/dovecot/us...
args = /etc/dovecot/cram-md5.pwd
}
userdb {
driver = passwd-file
args = /etc/dovecot/cram-md5.pwd
}
}}
*cram-md5.pwdを作成する [#h080bb00]
-/etc/dovecot/cram-md5.pwd空ファイルを作る。
#pre{{
# touch /etc/dovecot/cram-md5.pwd
# chown dovecot.dovecot /etc/dovecot/cram-md5.pwd
# chmod 0600 /etc/dovecot/cram-md5.pwd
}}
-パスワード生成。
# doveadm pw -s cram-md5
-生成されたパスワードとユーザ名を使ってcram-md5.pwdを編集...
#pre{{
foo:{CRAM-MD5}82f58f38c9523ab9b285bdd382d7a0bcf2794beb6cb...
}}
*dovecotを再起動 [#a0e41a1f]
-iptablesを使っている場合は、IMAP(=143)、IMAPS(=993)の穴...
-dovecotを再起動。
#pre{{
# /etc/init.d/dovecot restart
}}
*クライアントから接続 [#ldd3d9df]
-Beckyから接続する場合、認証方式cram-md5(IMAPSにチェック)...
-証明書を自力で作れば警告はなくなる。
終了行:
&tag(CentOS6/Doveot);
*目次 [#u5593ce4]
#contents
*参考情報 [#v92e9c8f]
-[[HowTo/CRAM-MD5 - Dovecot Wiki:http://wiki.dovecot.org/...
-[[CentOS 6.2 で dovecot 2.0 の設定:http://futuremix.org/...
-[[PODOMA [Fool For the City]:http://no-monogatari.com/do...
-[[できないSEの色々 - 前提など [04-06_Dovecot設定] - Tech...
-[[dovecot-2.0.x ハマリ道 - TenForwardの日記 (defiantの日...
*前提 [#n7234fa7]
-IMAPサーバー。
-安全のためIMAP over SSLを使って接続する場合の設定例。
*インストール [#idab3f45]
-yumでインストール
# yum install dovecot
-起動&自動起動
# /etc/rc.d/init.d/dovecot start
# chkconfig dovecot on
*設定 [#zb0e769a]
-設定ファイルがDovecot2.0から細かく分かれてしまったので以...
**dovecot.confの設定 [#o5c4e5ae]
-/etc/dovecot/dovecot.confを編集する。protocolsをimapだけ...
#pre{{
protocols = imap
}}
**10-master.confの編集 [#aaea8f28]
-/etc/dovecot/conf.d/10-master.confを編集する。[[dovecot-...
#pre{{
service imap-login {
inet_listener imap {
port = 0
}
inet_listener imaps {
port = 993
ssl = yes
}
}
}}
**10-ssl.confの設定 [#d92862c1]
-/etc/dovecot/conf.d/10-ssl.confを編集。
#pre{{
ssl = yes
}}
**10-auth.confの設定 [#dccd3c04]
-/etc/dovecot/conf.d/10-auth.confを編集。
#pre{{
disable_plaintext_auth = no
auth_mechanisms = cram-md5
#!include auth-system.conf.ext
!include auth-passwdfile.conf.ext
}}
**auth-passwdfile.conf.extの設定 [#u29eaecb]
/etc/dovecot/conf.d/auth-passwdfile.conf.extを編集。
#pre{{
passdb {
driver = passwd-file
# args = scheme=CRYPT username_format=%u /etc/dovecot/us...
args = /etc/dovecot/cram-md5.pwd
}
userdb {
driver = passwd-file
args = /etc/dovecot/cram-md5.pwd
}
}}
*cram-md5.pwdを作成する [#h080bb00]
-/etc/dovecot/cram-md5.pwd空ファイルを作る。
#pre{{
# touch /etc/dovecot/cram-md5.pwd
# chown dovecot.dovecot /etc/dovecot/cram-md5.pwd
# chmod 0600 /etc/dovecot/cram-md5.pwd
}}
-パスワード生成。
# doveadm pw -s cram-md5
-生成されたパスワードとユーザ名を使ってcram-md5.pwdを編集...
#pre{{
foo:{CRAM-MD5}82f58f38c9523ab9b285bdd382d7a0bcf2794beb6cb...
}}
*dovecotを再起動 [#a0e41a1f]
-iptablesを使っている場合は、IMAP(=143)、IMAPS(=993)の穴...
-dovecotを再起動。
#pre{{
# /etc/init.d/dovecot restart
}}
*クライアントから接続 [#ldd3d9df]
-Beckyから接続する場合、認証方式cram-md5(IMAPSにチェック)...
-証明書を自力で作れば警告はなくなる。
ページ名: