我已经在 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>
我尝试将电子邮件地址添加到指向他们自己的虚拟文件中,但没有成功。
请帮忙!