NOQUEUE: reject: RCPT from localhost [:: 1]: 554 5.7.1 disconnecting from localhost

I try to send mail from centos using postfix and rails, but I get an error like

Nov 16 18:14:15 li664-186 postfix/smtpd[5477]: connect from localhost[::1]
Nov 16 18:14:15 li664-186 postfix/smtpd[5477]: NOQUEUE: reject: RCPT from localhost[::1]: 554 5.7.1 <test@gmail.com>: Relay access denied; from=<admin@my-domain.com> to=<test@gmail.com> proto=ESMTP helo=<localhost.localdomain>
Nov 16 18:14:15 li664-186 postfix/smtpd[5477]: disconnect from localhost[::1]

Here is my main.cf

queue_directory = /var/spool/postfix

command_directory = /usr/sbin

daemon_directory = /usr/libexec/postfix

data_directory = /var/lib/postfix

mail_owner = postfix

myhostname = host.my-domain.com
#myhostname = virtual.domain.tld

#mydomain = domain.tld
mydomain = my-domain.com

#myorigin = $myhostname
myorigin = $mydomain

inet_interfaces = all
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, localhost
inet_interfaces = localhost

# Enable IPv4, and IPv6 if supported
inet_protocols = all

#proxy_interfaces =
#proxy_interfaces = 1.2.3.4


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.6.6/samples

readme_directory = /usr/share/doc/postfix-2.6.6/README_FILES

I deleted the entire commented line from the main.cf file. I must configure any other files to send mail from my server

+4
source share
1 answer

* postconf -n ** power please.

The "mynetworks" parameter probably does not include IPv6 localhost ( :: 1 )

0
source

All Articles