• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

Plesk upgrade resets default webmail handler, client and domain templates

D

DraganM

Guest
More plesk bugs:

1. Every time you do a plesk upgrade the webmail handler gets reset for all domains. So if any of your users are using atmail after the upgrade they will be set to horde.

2. Every time you do a plesk upgrade the "default" client and domain template settings get reset. So you will loose any changes that were made.

I've verified that this happens with almost every upgrade and this is a major pain!

Tested on centos4 32bit upgrade from 9.2.3 to 9.3.0
 
I have forwarded it to development team for the further investigation and reproducing. I will update thread with results.
 
Until this is fixed, there is a quick way to restore all domains to use your chosen webmail client.

First, create a list of all your domain names which can be done easily via MySQL:

mysql -uadmin -p<password>
use psa
select name from domains;

Then, once you have the list, save it as a file such as domains.txt and then run:

for i in `cat domains.txt`; do /usr/local/psa/bin/domain_pref --update $i -webmail atmail; done;

This will then update all domains in Plesk to use atmail (in the above example).
 
I have a webmail problem.

and try this : "mysql -uadmin -p<password>
use psa
select name from domains;"

but after "use psa" have "SQL>" and I don't what I do ?

help me please...
 
I found out later, an easier way is to go to your domain list in Plesk, select all, click modify and then you can change the webmail client used for all your domains at once.
 
Back
Top