• 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

Plesk 8.2 and submission port

E

EsmaS

Guest
Hello,

I have Plesk version 2.1.

Is it possible to add submission port (587) to Plesk version 2.1?


--
Esma
 
Yes,

Just add a new file in /etc/xinetd.d

You can copy the "smtp_psa" and rename e.g. "smtp_587"

This is my smtp_587:
####################

service submission
{
socket_type = stream
protocol = tcp
wait = no
disable = no
user = root
instances = UNLIMITED
server = /var/qmail/bin/tcp-env
server_args = -Rt0 /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true
}
######################

And restart xinetd.
 
Hello,
Thanks,
I tried as you say. But not work.I gave the firewall trace.

Error is given below.

*******
C:\>telnet mail.atermit.com 587
Connecting To mail.atermit.com...Could not open connection to the host, on port
587: Connect failed
*******
A setting outside of this topic should I do? Can you help me please?

Thank yo very much.

--
 
Hello,

I have solved my problem as follows:

***********
smtp_submission
service submission
{
socket_type = stream
protocol = tcp
wait = no
disable = no
user = root
instances = UNLIMITED
env = SMTPAUTH=1
server = /var/qmail/bin/tcp-env
server_args = -Rt0 /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qmail/bin/true
}
***********
Thank you very much for your helps.. : )

--
Esma
 
Back
Top