Postfix 将某些用户转发到 Exchange 服务器

Postfix 将某些用户转发到 Exchange 服务器

我已经在 Google 上搜索了几个小时,试图找出原因。当我们在 LIVE 邮件服务器上交谈时,发生了这种情况,我以为在 LIVE 开始之前我已经对其进行了适当的测试。

我们有一个 Postfix 服务器,安装了 IMAP/POP3 等。95% 的用户只需在本地发送到 Postfix。但我有 5 个用户,需要转发到 Exchange 服务器。

所有用户的域名都是相同的,所以我无法按域名进行拆分。

没有人可以向 Exchange 系统上的这些用户发送电子邮件?我一直收到“虚拟别名表中的用户未知”错误消息。

我为使用 smtp 的用户设置了传输图:但我无法投递邮件?

是否有一些设置可以让我配置仍应接受额外的电子邮件地址?

这是我的 main.cf:

debug_peer_level = 9
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
sender_bcc_maps = hash:/etc/postfix/bcc
mailbox_command = /usr/bin/procmail-wrapper -o -a $DOMAIN -d $LOGNAME
home_mailbox = Maildir/
smtpd_sasl_auth_enable = yes
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions = permit_mynetworks permit_sasl_authenticated reject_unauth_destination
myhostname = <hostname>
mydomain = <domain>
smtpd_banner = Hello.  This server uses anti-spam and anti-virus functions.
relayhost = <relayserver>:<port>
transport_maps = hash:/etc/postfix/transport
#fallback_transport = smtp:<ip>:<port>
#fallback_transport_maps = hash:/etc/postfix/fallback_map
luser_relay = dcmoody@<domain>

我尝试将电子邮件地址添加到指向他们自己的虚拟文件中,但没有成功。

请帮忙!

答案1

在 Exchange 中,为电子邮件添加不同的命名空间(如 testdomain.local 或类似名称),将具有该地址的电子邮件地址分配给需要转发的用户。在 Postfix 中设置转发以进行转发[电子邮件保护][电子邮件保护](或 .com 或其他 - 我不太了解 Postfix,不知道它是否会像 Exchange 一样接受非公开路由的 TLD)。这将在很大程度上解决问题,但您需要确保 Exchange 知道它对 company.com 域不具有权威性。

相关内容