4

I am trying to send mail from centos using postfix and rails but I am getting error as

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 have removed all the commented line from main.cf file. Whether I have to configure any other files to send mail from my server

Prabhakaran
  • 3,900
  • 15
  • 46
  • 113

1 Answers1

0

*postconf -n** output please.

Probably the "mynetworks" parameter doesn't include IPv6 localhost (::1)

Ralf Hildebrandt
  • 543
  • 2
  • 16