• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

HOWTO: using alternative port for SMTP and PLESK

N

NightMan

Guest
Your customer may complain sometime they cannot use their SMTP server to sending mails out. Most probably the ISP started blocking 3rd party smtp servers.
In this case you can provide an alternative port for your customers to send mails out.
Or
Some customers having problem accessing your PLESK control panel using from their work but it working fine from their home. This is a case network admin at work is blocking the port 8443.

Here is a simple solution.
You can use your firwall to route all traffic coming to one port to another, no need to change or configure anything in the PLESK. no need to configure things again and again after every PLESK upgrade.

Just preroute the ports.

e.g: routing smtp port 25 to 3525
iptables -t nat -I PREROUTING -p tcp --dport 3625 -j REDIRECT --to-port 25

e.g: routing PSA access port 8443 to 3636
iptables -t nat -I PREROUTING -p tcp --dport 3636 -j REDIRECT --to-port 8443

if you are using APF firewall then just add following line to the preroute.rules file.
$IPT -t nat -I PREROUTING -p tcp --dport 3625 -j REDIRECT --to-port 25
$IPT -t nat -I PREROUTING -p tcp --dport 3636 -j REDIRECT --to-port 8443


Use it, test it. And I should not be held responsible for any misconfiguration of your firewall settings. :)
 
Originally posted by atomicturtle
Or just use port 465 :p

that will prompt for a ssl certificate error(if you dont have installed a vaild one.) am I right?
 
Just one question:

Will that command make the iptables rule permanent, or do I need to do something else?

I remember on my old box when I would block IP's with iptables, that the rules would be gone when I rebooted.

Please let me know. Thanks!
 
Originally posted by madsere
Why make it so complicated? What's wrong with using this method:

http://kb.swsoft.com/article_22_837_en.html

nothing wrong with this method. but when you upgrade the PLESK, then you have to make the changes again.

firewall method is simple and not affected by the PLESK upgrade. the same way you can give access to the PSA by another port than 8443.
 
Back
Top