(1)POSTFIXの設定
/etc/postfix/main.cf
に
home_mailbox = Maildir/
を追記
※メールボックスをMaildir方式を使用するので(もしあるようなら)以下の二項目はコメントアウト(行頭に#追記)
#mailbox_command = /some/where/procmail -a "$EXTENSION"
#mail_spool_directory = /var/spool/mail
(2)ホームディレクトリにメールボックスの設定
新規ユーザー追加時に自動でMaildir形式メールボックス作成
mkdir -p /etc/skel/Maildir/{new,cur,tmp}
メールボックスパーミッション設定
chmod -R 700 /etc/skel/Maildir/
(3)dovecotの設定
/etc/dovecot/conf.d/10-mail.conf
に
mail_location = maildir:~/Maildir
を追記
コメント