Make sure you have the procmail package installed, and then run the following: $ for i in MAILDIR/cur/*; do formail -I "Status: RO" < "$i" >> MBOX; done I work as a freelancer, so if you don’t want to do… Read More
How to show the disk space used by MySQL tables?
Connect to your MySQL server and run the following: mysql> select table_name, round(((data_length + index_length) / (1024 * 1024)), 2) as `Size in MB` from information_schema.tables where table_schema = ‘YOUR_DB_NAME’ order by `Size in MB`; I work as a freelancer,… Read More