• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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