website design and development

Weblog - 1 items for smtp

View all
litespeed hosting Ruby on Rails cpanel smtp plesk port 26 email DNS spam rss IE6 float CSS gmail ActiveRecord has many through plugins news subversion migrations shell webmin mail IE7 ssl Capistrano git Flash Mac OS X ruby gems rspec cucumber Textmate Mac OS X webrat Rails 3 scope

Enable port 26 for smtp with Plesk

08 Jan 2008 smtp  plesk  port 26

Thanks to this post for the information.


In ‘/etc/xinetd.d/’ there is a file called smtp_psa, you will need to copy this file to another filename (in this example I’ll use smtp2_psa).

In this new file, you will want to change the line:
’service smtp’ to ’service smtp2′

Once this is complete, you will need to modify your /etc/services file, and add the smtp2 service:
Simply copy/paste the existing smtp line and change the name and port (we’ll use port 26 in this example).

smtp2 26/tcp mail
smtp2 26/udp mail

Restart xinetd.
/etc/init.d/xinetd restart

Check to make sure the new port is now listening
# netstat -plunt |grep :26

That should return something similar to

tcp 0 0 0.0.0.0:26 0.0.0.0:* LISTEN 2345/xinetd

You can test this connection from the outside by trying to telnet to port 26 on the server.
From a linux shell or Windows command prompt enter

telnet 123.123.123.123 26

© Level Systems 2007