web-dev-qa-db-ja.com

仮想アドレスメールボックスにメールを配信するための接尾辞

Postfixバージョン2.6.6、Dovecotバージョン2.0.9

Postfix + Dovecotをセットアップしたい。 Dovecotは機能しているようです。認証できます。ただし、メールボックスは空です。何も配達されません!私はPostfix + Dovecotに関する多くのチュートリアルに従いましたが、彼らはDovecotLDAまたはMySQLを使用して物事を複雑にしたいと思っているようです。非常にシンプルで、Postfixを仮想メールボックスに配信しても問題ありません。 MySQLも必要ありません。 Dovecotが認証に使用するカスタムパスワードファイルをすでに設定しており、SSLを使用してPOP3にログインできます。

Dovecotで設定した仮想ユーザーではなく、Postfixがシステムユーザーアカウント(キャッチオール)に配信していることがログからわかります。 SMTP + SSL認証も機能しているようです。

Dovecotが正しい仮想メールフォルダをチェックしていることもログからわかります。

Postfixを仮想メールボックスに配信する方法を理解する必要があります。私は私が関連すると思う以下を持っています。他に確認する必要のある設定を教えてください。

alias_maps = hash:/etc/aliases
mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
mydomain = xxx.com
myhostname = mail.xxx.com
mynetworks = 99.99.99.99, 99.99.99.99
myorigin = $mydomain
relay_domains = $mydestination, xxx.com, domain2.net, domain3.com
sendmail_path = /usr/sbin/sendmail.postfix
setgid_group = postdrop
smtpd_recipient_restrictions = reject_non_fqdn_sender reject_non_fqdn_recipient reject_unknown_recipient_domain permit_sasl_authenticated check_relay_domains
smtpd_sasl_auth_enable = yes
smtpd_sasl_path = private/auth
smtpd_sasl_type = dovecot
smtpd_sender_restrictions = check_sender_mx_access cidr:/etc/postfix/bogus_mx reject_invalid_hostname reject_unknown_sender_domain reject_non_fqdn_sender
virtual_mailbox_base = /var/spool/vmail
virtual_mailbox_domains = xxx.com, domain2.net, domain3.com
virtual_minimum_uid = 444

接尾辞master.cf:

submission inet n       -       -       -       -       smtpd
  -o smtpd_tls_security_level=encrypt
  -o smtpd_sasl_auth_enable=yes
  -o smtpd_sasl_type=dovecot
  -o smtpd_sasl_path=private/auth
  -o smtpd_sasl_security_options=noanonymous
  -o smtpd_sasl_local_domain=$myhostname
  -o smtpd_client_restrictions=permit_sasl_authenticated,reject
  -o smtpd_sender_login_maps=hash:/etc/postfix/virtual
  -o smtpd_sender_restrictions=reject_sender_login_mismatch
  -o smtpd_recipient_restrictions=reject_non_fqdn_recipient,reject_unknown_recipient_domain,permit_sasl_authenticated,reject

Dovecot関連:

mail_location = maildir:~/Maildir
passdb {
  args = /etc/dovecot/users.conf
  driver = passwd-file
}
service auth {
  unix_listener /var/spool/postfix/private/auth {
    mode = 0660
    user = postfix
  }
}

仮想メールユーザー:

vmail:x:444:99:virtual mail users:/var/spool/vmail:/sbin/nologin

自分に何かを送信しようとしたときの/ var/log/maillogは次のとおりです。

Oct 25 22:10:05 308321 postfix/smtpd[2200]: connect from user-999.cable.mindspring.com[99.99.99.99]
Oct 25 22:10:05 308321 postfix/smtpd[2200]: D224BD4753: client=user-999.cable.mindspring.com[99.99.99.99], sasl_method=LOGIN, [email protected]
Oct 25 22:10:06 308321 postfix/cleanup[2207]: D224BD4753: message-id=<7DC3C163CFFC483AB6226F8D3D9969D2@dumbopc>
Oct 25 22:10:06 308321 postfix/qmgr[2168]: D224BD4753: from=<[email protected]>, size=1385, nrcpt=1 (queue active)
Oct 25 22:10:06 308321 postfix/smtpd[2200]: disconnect from user-999.cable.mindspring.com[99.99.99.99]
Oct 25 22:10:06 308321 postfix/local[2208]: D224BD4753: to=<[email protected]>, orig_to=<[email protected]>, relay=local, delay=1.1, delays=0.53/0.02/0/0.51, dsn=2.0.0, status=sent (delivered to mailbox)
Oct 25 22:10:06 308321 postfix/qmgr[2168]: D224BD4753: removed
3
Chloe

メールを受け入れる仮想ドメインのみを定義したようです。また、アカウントを定義する必要があります。

Main.cfのディレクティブvirtual_mailbox_mapsを使用してこれを行います

詳細については、こちらをご覧ください: http://www.postfix.org/postconf.5.html#virtual_mailbox_maps

3
miono