| Subcribe via RSS

Delete mail queue from or to a specific email address

March 25th, 2010 Posted in Mail server

Some times, you may need to delete mail queue from or to a specific email address in your Postfix mail server.   For example, if  you get spam attack that fills your server with a lot of emails from the same sender email address or to the same recipient email address, you need to clean those emails from your mail queue.

Manually deleting those email is very time consuming.  Here are the step to clean those email with one single command:

for i in `/usr/sbin/postqueue -p|grep 'user@domain.com' |awk {'print $1'}|grep -v 'user@domain.com'`; do /usr/sbin/postsuper -d $i ; done

This command will delete mail queue from or to user@domain.com.  To check current mail queue, run this command:

/usr/sbin/postqueue -p

Your mail queue will be much shorter.

Be Sociable, Share!

2 Responses to “Delete mail queue from or to a specific email address”

  1. Isabelle Says:

    Hey friend can i publish some paragraph of your article on my little blog of university.I have to publish a good articles out there and i really think your post Fits best into it.I will be grateful to give you an source link as well.I have two blogs one my own and the other which is my college blog.I will publish some part in the university blog.Hope you do not mind.


  2. Rahman Says:

    Very Useful command.

    Thanks


Leave a Reply


+ 7 = fifteen