我正在使用 postfix 和 gmail 小型企业应用程序
它似乎可以很好地将电子邮件发送到外部域,但在尝试发送到同一域的电子邮件时不起作用
例如[电子邮件保护]发送至[电子邮件保护]没问题但是,[电子邮件保护]不发送给[电子邮件保护]
问题是我的 postfixc 配置文件是否有问题?
# Debian specific: Specifying a file name will cause the first
# line of that file to be used as the name. The Debian default
# is /etc/mailname.
#myorigin = /etc/mailname
smtpd_banner = $myhostname ESMTP $mail_name (Ubuntu)
biff = no
# appending .domain is the MUA's job.
append_dot_mydomain = no
# Uncomment the next line to generate "delayed mail" warnings
#delay_warning_time = 4h
readme_directory = no
# TLS client parameters
## The certificate authority file below is in the default location for Ubuntu,
## and is used by Postfix to validate the CA used by Google's mail servers
## for when Postfix talks to them to send mail
smtp_tls_CAfile = /etc/ssl/certs/ca-certificates.crt
smtp_use_tls = yes
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
smtp_tls_note_starttls_offer = yes
tls_random_source = dev:/dev/urandom
# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.
myhostname = ip-xxx-xx-x-xxx.us-west-2.compute.internal
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
myorigin = /etc/mailname
mydestination = mysite.com, ip-xxx-xx-x-xxx.us-west-2.compute.internal, localhost.us-west-2.compute.internal, localhost
relayhost = [smtp.gmail.com]:587
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = loopback-only
## These settings tell Postfix where to find the username and password to use
## when relaying e-mail through the server set in the relayhost directive above
smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/sasl/passwd
smtp_sasl_security_options = noanonymous
smtp_sasl_tls_security_options = noanonymous
答案1
如果我理解正确的话,mysite.com 的邮件由 Google Apps 处理。这样对吗?
如果是这样,您的列表中就不应该有 mysite.com mydestination
。postfix 文档,该列表中的条目将在本地传送,而不是中继到其他邮件系统。