Назад | Перейти на главную страницу

postfix не будет обращаться к тому же домену с gmail

Я использую приложения для малого бизнеса postfix и gmail

Кажется, он отлично работает для отправки электронной почты на внешние домены, но не работает при попытке отправить по электронной почте с того же домена

Так, например, info@mysite.com отправляет на john@yahoo.com без проблем Однако info@mysite.com не отправляет на chris@mysite.com

Вопрос в том, есть ли проблема с моим файлом конфигурации 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

Если я правильно понимаю, почта для mysite.com обрабатывается Службами Google. Это верно?

Если это так, у вас не должно быть mysite.com в вашем mydestination список. За документация по postfix, записи в этом списке будут доставлены локально, а не ретранслироваться в другие почтовые системы.