Hi,
Applies to : Windows Plesk 10.x And Plesk 11.x
You might receive the below error when you try to change the email account password from a subscription :
This happen if you upgrade from older version Plesk. Plesk upgrade create one user for every mail account, but if you change the subscription this is not inheriting the users. And the problem... if one mail account have an user associated cannot change password.
Solution :
You need to execute the below query in the Plesk MySQL database :
This works perfectly, all email accounts now properly show up under their client and can have their password changed through Plesk.
Applies to : Windows Plesk 10.x And Plesk 11.x
You might receive the below error when you try to change the email account password from a subscription :
Error: The user account was not found. This could happen if the user account was removed by someone else while you were changing its settings.
Solution :
You need to execute the below query in the Plesk MySQL database :
UPDATE smb_users SET ownerId=(SELECT id FROM clients WHERE login='example.com') WHERE email like '%example.com';
Replace "example.com" with the specific domain you're trying to fix. If your 10.x subscriptions are not tied to a single owner, you'll need to dig through and tie the correct id from the clients table.
Replace "example.com" with the specific domain you're trying to fix. If your 10.x subscriptions are not tied to a single owner, you'll need to dig through and tie the correct id from the clients table.
Comment