Cpanel creates a default address inbox for each domain consisting of the Cpanel user’s primary username. This address is not used for normal email, rather as a catch-all (if enabled) or a sink-hole for delivery failures or auto-generated mail from scripts. It is fairly safe to regularly empty out these mailboxes, and it will free up significant space for some domains:
find /home/*/mail/new/ -type f -print0 | xargs -0 rm
when i try that command gives me result.
rm: missing operand
Try `rm –help’ for more information.
try just:
find /home/*/mail/new/ -type f -print -delete