• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

Resolved Problem when sending to gmail account

greek_batter

New Pleskian
Hello,
I am having problem in sending emails in gmail account. I see them in the queue but they are not proccessing.
Looking at the logs I noticed that when I try to send to gmail i receive the following:

Dec 5 12:55:36 lvps81-41-130-77 postfix/smtpd[8797]: connect from adsl-215.176.58.243.tellas.gr[176.58.243.215]
Dec 5 12:55:36 lvps81-41-130-77 postfix/smtpd[8797]: warning: connect to Milter service inet:127.0.0.1:12768: Connection refused
Dec 5 12:55:37 lvps81-41-130-77 postfix/smtpd[8797]: 51E6A4413: client=adsl-215.176.58.243.tellas.gr[176.58.243.215], sasl_method=DIGEST-MD5, [email protected]
Dec 5 12:55:37 lvps81-41-130-77 postfix/cleanup[8801]: 51E6A4413: message-id=<002a01d24edd$baa3c680$2feb5380$@com>
Dec 5 12:55:37 lvps81-41-130-77 opendkim[31319]: 51E6A4413: DKIM-Signature field added (s=mail, d=edentalbook.com)
Dec 5 12:55:37 lvps81-41-130-77 postfix/qmgr[29641]: 51E6A4413: from=<[email protected]>, size=2808, nrcpt=1 (queue active)
Dec 5 12:55:37 lvps81-41-130-77 postfix/qmgr[29641]: warning: connect to transport private/smtp-ipv4: No such file or directory
Dec 5 12:55:37 lvps81-41-130-77 postfix/error[8802]: 51E6A4413: to=<[email protected]>, relay=none, delay=0.62, delays=0.61/0/0/0, dsn=4.3.0, status=deferred (mail transport unavailable)
Dec 5 12:55:40 lvps81-41-130-77 postfix/smtpd[8797]: disconnect from adsl-215.176.58.243.tellas.gr[176.58.243.215]
 
Hi greek_batter,

pls. note the following errors:
warning: connect to Milter service inet:127.0.0.1:12768: Connection refused
Pls. check and ( maybe ) correct your postfix - settings with for example:
Code:
cat /etc/postfix/main.cf | grep -i milter
and
Code:
cat /etc/postfix/main.cf | grep -i inet
The standard setting for Plesk and postfix would look like this:
Code:
smtpd_milters = , inet:127.0.0.1:12768
non_smtpd_milters =

milter_default_action = accept
milter_protocol = 6
and
Code:
inet_interfaces = all
inet_protocols = all
Make sure, that the Plesk - milter is active and running:
Code:
ps aux | grep pca-pc-remote

netstat -tulpn | grep 12768

warning: connect to transport private/smtp-ipv4: No such file or directory
Pls. check and ( maybe ) correct your complete mail - server configuration with for example:
Code:
plesk repair mail -y -v
... consider to investigate possible issues/errors/problems with the help of the corresponding error - log from your repair - process ( => /var/log/plesk/ ).​

 
Back
Top