in reply to hashing out lines from mailq...

For a quick list, this is working as a one liner from the linux shell (mailq from the sendmail.postfix binary)..
mailq | perl -lane '$/=q[]; print $F[0].q[ ].$F[$#F].$/ unless /^-/;'
I know that mailq output varied a bit by platform..
-Harold