• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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