Postfix

Linux Top
Maildir

postfixをMaildirにするにはmain.cfを変更する。
追加
home_mailbox = Maildir/
削除
mailbox_command = procmail -a "$EXTENSION"

# vi /etc/postfix/main.cf

home_mailbox = Maildir/
# mailbox_command = procmail -a "$EXTENSION"
SMTP AUTH
パスワードファイル作成
# saslpasswd2 -c {username}
# chown postfix.postfix /etc/sasldb2
# chmod 600 /etc/sasldb2
# vi /etc/postfix/sasl/smtpd.conf

  pwcheck_method: sasldb
  # libsasl2の場合はsasldbがauxpropになる

# vi /etc/postfix/main.cf
  smtpd_sasl_auth_enable = yes
  smtpd_sasl_security_option = noanonymous
  smtpd_sasl_localdomain = $myhostname
  broken_sasl_auth_client = yes
  smtpd_recipient_restrictions = permit_mynetworks,permit_authenticated,check_relay_domains
TLS

smtpd.pemはcourier-imap-sslのをコピーした。

# vi main.cf
  smtpd_tls_cert_file = /etc/postfix/smtpd.pem
  smtpd_tls_key_file = $smtpd_tls_cert_file
  smtpd_tls_CAfile = $smtpd_tls_cert_file
  smtpd_tls_loglevel = 3
  smtpd_tls_received_handler = yes
  smtpd_tls_session_cache_timeout = 3600s
  tls_random_source = dev:/dev/urandom