so if you're client creation notifications look something like this:
QUOTE
Subject:
This is a notification of new client creation from Plesk.
Client contact name: test dude
Client login: testerman
Client password: testes
Plesk entry point: https://plain.rackshack.net:8443
then what you need to do is this:
(first off, be sure you have properly and completely changed your hostname already and tested services after that.
1.) i found some lingering PTR records in /var/named/ those should be cleaned up.
2.) do a mysqldump of your psa database with something like:
mysqldump -u root -pYourPassword --databases psa > psadump.sql
3.) open that psadump.sql in an editor. you need to check two tables specifically, one is called 'misc' and the other is 'dns_recs'. The important one is 'misc' which holds the 'FullHostName' variable which is what I had to change from plain.rackshack.net to my domain name. In dns_recs there was just a lingering incorrect PTR record.
4.) be sure to save your changes to your sql dump file.
5.) log into mysql and drop the psa database with "drop databse psa;" then logout of mysql and at the command line re-import the dump file with something like this:
mysql -u root -pYourPass < psadump.sql
i am sure there are easier and better ways of making those changes but i dont know much sql so this is the easy way for me. hopefully, someone will write a better guide to this than me later.
thanks,
mOjO
p.s. i think we should be strongly disappointed in plesk for not making available a simple tool for making these changes for us.