お品書き
書き直し中…
とりあえず、中へどうぞ
↓↓↓
スポンサーリンク

Linux Postfix dovecot メールの保存形式をMaildir形式にする(自分用覚書)

PC/ネット
(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

を追記

コメント