• Inviting everyone who uses WordPress management tools in Plesk
    The Plesk team is conducting a 60-minute research session that includes an interview and a moderated usability test.
    To participate, please use this link .
    Your experience will help shape product decisions and ensure the tools better support real-world use cases.

where is smtp_psa

R

randata

Guest
Hi
iam running plesk 8.x and debian
using squrelmail
and i want to change smtp port to 26
i have changed the smtp port in services
but i cant find
smtp_psa
iam tryinig to run this guide
http://kb.swsoft.com/en/837

Have i missed something here


tord
 
on Debian system you should find lines started with smtp and smtps in your /etc/inetd.conf file instead of separate files in etc/xinetd.d/ directory
 
It should be there, its in the same directory as ftp_psa, poppassd_psa, smtps_psa and a couple others.

You can try to do the locate command to find it if its in some other directory. if you have to create the file, it basically says this as a default:

Code:
service smtp
{
        socket_type     = stream
        protocol        = tcp
        wait            = no
        disable         = no
        user            = root
        instances       = UNLIMITED
        server          = /var/qmail/bin/tcp-env
        server_args     = /var/qmail/bin/relaylock /var/qmail/bin/qmail-smtpd /var/qmail/bin/smtp_auth /var/qmail/bin/true /var/qmail/bin/cmd5checkpw /var/qma
il/bin/true
}
 
Back
Top