CentOS 5
Sponsored Link

Dovecot インストール/設定2015/01/19

  DovecotをインストールしてPOP/IMAPサーバーを構築します。Postfix にSASL機能が提供できるように設定します。
[root@mail ~]#
yum -y install dovecot
[root@mail ~]#
vi /etc/dovecot.conf
# 20行目:コメント解除

protocols = imap imaps pop3 pop3s
# 214行目:コメント解除して追記

mail_location =
maildir:~/Maildir
# 765行目:コメント解除して追記

mechanisms = plain
login
# 981行目:以下のように変更

socket listen {    
# コメント解除

#master {

# Master socket provides access to userdb information. It's typically

# used to give Dovecot's local delivery agent access to userdb so it

# can find mailbox locations.

#path = /var/run/dovecot/auth-master

#mode = 0600

# Default user/group is the one who started dovecot-auth (root)

#user =

#group =

#}

client {
   
# コメント解除

# The client socket is generally safe to export to everyone. Typical use

# is to export it to your SMTP server so it can do SMTP AUTH lookups

# using it.

path =
/var/spool/postfix/private/auth-client
 
# コメント解除し変更

mode = 0660
   
# コメント解除

user = postfix
   
# 追記

group = postfix
   
# 追記

}
   
# コメント解除

}    
# コメント解除
[root@mail ~]#
/etc/rc.d/init.d/dovecot start

Starting Dovecot Imap:     [  OK  ]
[root@mail ~]#
chkconfig dovecot on

関連コンテンツ