• 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

Question Mass change mail "Access to the Customer Panel" settings?

G J Piper

Regular Pleskian
Is there a way to revoke "Access to the Customer Panel" from all email accounts at once, without disrupting any other settings?
 
First of all find all emails with allowed access with following SQL query in Plesk database:

MariaDB [psa]> select email from smb_users where isLocked=0;

Make sure that these are the addresses for which you want to deny access. If it is ok, run

MariaDB [psa]> update smb_users set isLocked=1 where isLocked=0;

I hope it will help.
 
Back
Top