Postfix 2.10.2では、ローカルユーザーにメールアドレスを割り当てるために、複数のドメインといくつかの仮想エイリアスを設定しています。キャッチオールを追加しない限り、問題なく動作します。
仮想エイリアスを使用する前は、
local_recipient_maps =
luser_relay = catchall
しかし、異なるドメインのメールアドレスを分類する必要があるため、仮想エイリアスを使用する必要がありました。
今、postfix.orgは次のようにすべきだと言っています。
/etc/postfix/main.cf:
virtual_alias_domains = example.com
virtual_alias_maps = hash:/etc/postfix/virtual
/ etc / postfix / virtual:
postmaster@example.com account1
info@example.com account1
sales@example.com account2
@example.com catchall
しかし、そうすると、キャッチオールアドレスは、明示的に定義されていないアドレスへのメールだけでなく、すべてのメールを取得します。なぜそれを変更するのですか?
postmap virtualを実行し、Postfixも再起動しました。ログにはエラーはなく、キャッチオールアドレスへの配信がログに記録されるだけです。そして、「mydestinationとvirtual_alias_domainsの両方にドメインexample.comをリストしないでください」という警告がありますが、それはしませんでした!mydestinationディレクティブもありません。(以下の構成に1つありますが、NickWが提案した後に追加しました。)
ここに私の完全なconfがあります:
alias_database = hash:/etc/aliases
alias_maps = hash:/etc/aliases
append_dot_mydomain = no
biff = no
broken_sasl_auth_clients = yes
config_directory = /etc/postfix
home_mailbox = Maildir/
inet_interfaces = all
inet_protocols = all
mailbox_command = /usr/lib/dovecot/deliver -c /etc/dovecot/dovecot.conf -m "${EXTENSION}"
mailbox_size_limit = 0
mydestination = $myhostname
myhostname = mydomain.com
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
myorigin = /etc/mailname
readme_directory = no
recipient_delimiter = +
relayhost =
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtp_use_tls = yes
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
smtpd_recipient_restrictions = reject_unknown_sender_domain, reject_unknown_recipient_domain, reject_unauth_pipelining, permit_mynetworks, permit_sasl_authenticated, reject_unauth_destination
smtpd_relay_restrictions = permit_mynetworks permit_sasl_authenticated defer_unauth_destination
smtpd_sasl_auth_enable = yes
smtpd_sasl_authenticated_header = yes
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_path = private/dovecot-auth
smtpd_sasl_security_options = noanonymous
smtpd_sasl_type = dovecot
smtpd_sender_restrictions = reject_unknown_sender_domain
smtpd_tls_auth_only = yes
smtpd_tls_cert_file = /etc/dovecot/dovecot.pem
smtpd_tls_key_file = /etc/dovecot/private/dovecot.pem
smtpd_tls_mandatory_ciphers = medium
smtpd_tls_mandatory_protocols = SSLv3, TLSv1
smtpd_tls_received_header = yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtpd_use_tls = yes
tls_random_source = dev:/dev/urandom
virtual_alias_domains = $myhostname, myotherdomain.com
virtual_alias_maps = hash:/etc/postfix/virtual