Whenever we run a cron-job or send an email from the terminal in Linux environment, it auto saves an email into the terminal mail box. As time goes, the mail box can be huge and we should remove emails completely.
To remove all mails in the Linux mail box, run these commands:
mail -N d * q
- The first command list all mails with no summary.
- The second command simply delete all of them
- Then quit
That's all.
Leave a Reply