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

Отказано в доступе к реле (в ответ на команду RCPT TO) Проблема с постфиксом

Я пытаюсь настроить свой сервер для электронной почты, используя ссылку по этой ссылке: SMTP-ретрансляция исходящей почты в Postfix - с помощью Webmin. я использовал Мандрил smtp сервер в моем случае. Я также настроил экземпляр vagrent перед настройкой основного сервера. Но когда я пытаюсь отправить электронное письмо с сервера (как бродячего, так и основного), используя:

sendemail -f registration@example.com -t <myemail>@gmail.com -m "Message Body" -u "Message Subject"

Сообщения помещаются в очередь в postfix и никогда не достигают места назначения.

/var/log/mail.log файл показывает:

precise64 postfix/smtpd[16542]: connect from localhost[127.0.0.1]
precise64 postfix/smtpd[16542]: 116033A4253: client=localhost[127.0.0.1]
precise64 postfix/cleanup[16545]: 116033A4253: message-id=<621108.689435886-sendEmail@precise64>
precise64 postfix/qmgr[12672]: 116033A4253: from=<registration@example.com>, size=916, nrcpt=1 (queue active)
precise64 postfix/smtpd[16542]: disconnect from localhost[127.0.0.1]
precise64 postfix/smtp[16546]: Untrusted TLS connection established to smtp.mandrillapp.com[54.195.231.78]:587: TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)
precise64 postfix/smtp[16546]: 116033A4253: host smtp.mandrillapp.com[54.195.231.78] said: 454 4.7.1 <myemail@gmail.com>: Relay access denied (in reply to RCPT TO command)
precise64 postfix/smtp[16546]: Untrusted TLS connection established to smtp.mandrillapp.com[54.247.27.189]:587: TLSv1.1 with cipher AECDH-AES256-SHA (256/256 bits)
precise64 postfix/smtp[16546]: 116033A4253: to=<myemail@gmail.com>, relay=smtp.mandrillapp.com[54.247.27.189]:587, delay=4.3, delays=0.06/0.01/4/0.28, dsn=4.7.1, status=deferred (host smtp.mandrillapp.com[54.247.27.189] said: 454 4.7.1 <myemail@gmail.com>: Relay access denied (in reply to RCPT TO command))

И /etc/postfix/main.cf файл:

# See /usr/share/postfix/main.cf.dist for a commented, more complete version


# 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 parameters
smtpd_tls_cert_file = /etc/ssl/certs/ssl-cert-snakeoil.pem
smtpd_tls_key_file = /etc/ssl/private/ssl-cert-snakeoil.key
smtpd_use_tls=yes
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache

# See /usr/share/doc/postfix/TLS_README.gz in the postfix-doc package for
# information on enabling SSL in the smtp client.

myhostname = precise64
# myhostname = example.com
alias_maps = hash:/etc/aliases
alias_database = hash:/etc/aliases
mydestination = precise64, localhost.localdomain, , localhost
relayhost = smtp.mandrillapp.com:587
mynetworks = 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128
# mynetworks = example.com
mailbox_size_limit = 0
recipient_delimiter = +
inet_interfaces = all
smtpd_sasl_auth_enable = yes
smtpd_recipient_restrictions = permit_mynetworks reject_unauth_destination
virtual_alias_maps = hash:/etc/postfix/generic

smtp_tls_loglevel = 1
smtp_tls_security_level = encrypt
smtp_sasl_security_options = noanonymous
smtp_generic_maps = hash:/etc/postfix/generic

Нужны предложения. Что здесь не так? Я новичок в настройке почтового сервера. Прошу простить меня, если есть глупые ошибки.

Проблема здесь в том, что вы настроили свой сервер так, чтобы он передавал любую исходящую электронную почту на сервер, а именно smtp.mandrillapp.com. Этот сервер, в свою очередь, не принимает вашу почту.

Я не знаю эту компанию, но предполагаю, что они пересылают почту только от аутентифицированных клиентов, а вы не входите в систему.

Вероятно, у вас должно быть что-то вроде следующей строки где-то в вашем main.cf

smtp_sasl_auth_enable = yes
smtp_sasl_password_maps = hash:/etc/postfix/remote_passwords
smtp_sasl_security_options = noplaintext,noanonymous
smtp_sasl_tls_security_options = noanonymous

Файл /etc/postfix/remote_passwords должен выглядеть

smtp.mandrillapp.com:587 login:password

с вашим логином / паролем от mandrillapp.

Кроме того, я вижу в вашем файле конфигурации smtpd_sasl_auth_enable (обратите внимание на 'd' в конце smtp), который актуален только в том случае, если вы ожидаете, что клиент войдет на ваш сервер, и я не вижу достаточно конфигурации для этого. Вы должны убедиться, что это необходимо.

Оказывается, порт действительно очень важен в этом случае, когда вы указываете комбинацию имени пользователя и пароля для вашего реле. Мой почтовый сервер завис на долгие годы, потому что я не смог добавить: 588 в конец имени сервера, который я использовал. Что за PITA.

Где вы определяете ключ API Mandrill? Я думаю ты скучаешь smtp_sasl_password_maps директива в main.cf. См. Следующее:

Могу ли я настроить Postfix для отправки через Mandrill?