• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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