Postfixの設定 - サブドメインとドメインの他のサーバー

Postfixの設定 - サブドメインとドメインの他のサーバー

次の設定があります。 postfixサーバー1つ:a.example.comexample.com()のすべてのサブドメインから送信されたすべてのEメールを受け入れ、郵便*@*.example.com配達アカウントにEメールを送信し、*@example.com1つのホスティングを含むすべてのEメールアカウント(gmail、yahooなど)にEメールを送信する必要があります。交換:exch11.hosted.comexample.com Eメール(*@example.com)。

a.example.comから*@example.com()に電子メールを送信する以外は、exch11.hosted.comこの設定のすべてがうまく機能します。example.commydomains.db ファイルが存在する場合、電子メールは送信a.example.comされず、*@example.comローカルに送信されます。これを次に変更すると、電子*.example.comメールが送信されますが、電子メールを受け入れずに中継が許可されていないというエラーが表示されます(中継され、ローカルのmaildirアカウントに渡されるべきではありません)。*@example.comexch11.hosted.com*@subdomain.example.com

主な要件は、a.example.comがすべてのサブドメインからのメールを受け入れ、プライマリドメインからのメールをexch11.hosted.comに転送することです。誰でも私を助けたり、正しい方向を教えてもらえますか?

どんな助けでも歓迎します。

ありがとうございます。

メイン.cf:

command_directory = /usr/sbin
daemon_directory = /usr/libexec/postfix
mydestination = hash:/etc/postfix/mydomains
unknown_local_recipient_reject_code = 550
alias_maps = hash:/etc/aliases
home_mailbox = Maildir/
smtpd_banner = mail.example.com

debug_peer_level = 2
debugger_command =
     PATH=/bin:/usr/bin:/usr/local/bin:/usr/X11R6/bin
     xxgdb $daemon_directory/$process_name $process_id & sleep 5

sendmail_path = /usr/sbin/sendmail.postfix
newaliases_path = /usr/bin/newaliases.postfix
mailq_path = /usr/bin/mailq.postfix
setgid_group = postdrop
html_directory = no
manpage_directory = /usr/share/man
sample_directory = /usr/share/doc/postfix-2.3.3/samples
readme_directory = /usr/share/doc/postfix-2.3.3/README_FILES
virtual_alias_maps = hash:/etc/postfix/virtual, pcre:/etc/postfix/virtual.pcre
smtpd_sasl_auth_enable = yes
smtpd_sasl_security_options = noanonymous
smtpd_sasl_local_domain = $myhostname
smtp_sasl_security_options = noplaintext
#smtpd_sender_restrictions = check_sender_access hash:/etc/postfix/sender-access
smtpd_recipient_restrictions = check_recipient_access hash:/etc/postfix/inbound-access,permit_sasl_authenticated, permit_mynetworks, reject_unauth_destination
mailbox_size_limit = 25600000
transport_maps = hash:/etc/postfix/transport
message_size_limit = 20240000

virtual.pcreと仮想:

/(.*)@[^.]*\.example\.com$/ mailman

輸送:

# demo
.demo.example.com   smtp:192.168.100.161:25
# demo mail
demo.example.com    smtp:192.168.100.161
# Demo2
.demo2.example.com  smtp:192.168.100.221:25
# demo2 domain
demo2.example.com   smtp:192.168.100.221

私のドメイン名:

localhost       OK
mail.local  OK
example.com     OK

ベストアンサー1

まず、これがうまくいくかどうかはわかりませんが、始めるのに役立つことを願っています。

  1. このpostfixインスタンスはメールを直接処理しないため、mydomainsからexample.comを削除してください。
  2. これを追加すると、virtual_alias_domains = .example.comサブドメインの問題が解決されます。
  3. relay_domains = example.comexample.comへの明示的な転送を追加して指定します。たとえば、次のようになります。example.com :[exch11.hosted.com]

おすすめ記事