sparty2809
Technical User
How can I remove emails in a queue that are greater than yesterday... I want to search the sendmail queue and delete any messages that are from yesterday and before.
Thanks.
Thanks.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
find /var/spool/mqueue -mtime +1 -print | xargs rm -f