E ErwanG Regular Pleskian Dec 27, 2010 #1 Hello, How can we know the disc space used by each email in the panel ? We have the total amount in "Stats" but not the details. Thank you.
Hello, How can we know the disc space used by each email in the panel ? We have the total amount in "Stats" but not the details. Thank you.
IgorG Plesk addicted! Plesk Certified Professional Dec 27, 2010 #2 There is no possibility to see disk usage for particular mailbox in Plesk. There is only value for all domain's mailboxes in database: mysql> select dom_id,mailboxes from disk_usage; +--------+-----------+ | dom_id | mailboxes | +--------+-----------+ | 1 | 167936 | | 2 | 8192 | +--------+-----------+ 2 rows in set (0.00 sec) Click to expand... Therefore you can only check it directly in command line, for example: # du -hs /var/qmail/mailnames/plesk10.centos5.domain.com/mailname/ 52K /var/qmail/mailnames/plesk10.centos5.domain.com/mailname/ Click to expand...
There is no possibility to see disk usage for particular mailbox in Plesk. There is only value for all domain's mailboxes in database: mysql> select dom_id,mailboxes from disk_usage; +--------+-----------+ | dom_id | mailboxes | +--------+-----------+ | 1 | 167936 | | 2 | 8192 | +--------+-----------+ 2 rows in set (0.00 sec) Click to expand... Therefore you can only check it directly in command line, for example: # du -hs /var/qmail/mailnames/plesk10.centos5.domain.com/mailname/ 52K /var/qmail/mailnames/plesk10.centos5.domain.com/mailname/ Click to expand...