Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Dear Pleskians! The Plesk Forum will be undergoing scheduled maintenance on Monday, 7th of July, at 9:00 AM UTC. The expected maintenance window is 2 hours.
Thank you in advance for your patience and understanding on the matter.
on linux - based systems, you have the choice to use "find" and/or "grep", which gives you the possibility to search for a defined text for example. You could use:
grep -r 'Configure Email Client' /usr/local/psa ( which will for example lead you to: => "/usr/local/psa/admin/application/smb/resources/languages/en-US/controllers/email-address/configuration.php" )
Now you see at "configuration.php", that the fields are named with "fieldIncomingServer" and "fieldOutgoingServer", which again can be searched with a "grep" - command... for example:
grep -r 'fieldIncomingServer' /usr/local/psa
and grep -r 'fieldOutgoingServer' /usr/local/psa
Both commands will now point you to the basic file "/usr/local/psa/admin/application/smb/views/scripts/email-address/configuration.phtml", where the queries are done: