• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

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