see the example under the -d delete option (be sure to use postsuper -h instead of postsuper -d).

Something like this (untested):

# hold all mail from [EMAIL PROTECTED]
mailq | tail +2 | grep -v '^ *(' | awk  'BEGIN { RS = "" }
  { if ($7 == "[EMAIL PROTECTED]" )
   print $1 }
  ' | tr -d '*!' | postsuper -h -


great!

that worked a treat.

Cheers Noel!

Reply via email to