• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

MySQL statement for email quota and usage lookup?

Faris Raouf

Silver Pleskian
Plesk Guru
I'm totally lost in the Plesk 10 database Schema, even with the PDF diagram that someone at Parallels has gone to a lot of trouble to create.

If anyone has previously worked it out, I'd LOVE it if they could post the "magic words" (SQL statement) necessary to obtain a list of email addresses, mailbox-usage and mailbox-quota from the Plesk database.

I'm trying to write a php application that processes these details, so basically I need to generate a list containing every mailbox, how much data it contains and what its maximum quota is.

I know I can do this with a bash script that goes through all the directories in /var/qmail/mailnames, but as the data is already in the Plesk database, it seems silly to do that when the data has already been checked and stored.
 
ah! Got it:

Code:
SELECT mail.mail_name, domains.name, mn_param.val, mail.mbox_quota FROM mail, mn_param, domains WHERE mail.id=mn_param.mn_id AND mail.dom_id=domains.id AND mn_param.param='box_usage';
 
Back
Top