Index: trunk/server/fedora/config/etc/scripts/prune-mailq
===================================================================
--- trunk/server/fedora/config/etc/scripts/prune-mailq	(revision 2410)
+++ trunk/server/fedora/config/etc/scripts/prune-mailq	(revision 2411)
@@ -12,4 +12,9 @@
 clean_locker() {
     echo "${1%%@scripts.mit.edu}"
+}
+
+list() {
+    echo "Top twenty users by number of queued messages:"
+    mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { print $8 }' | sort | uniq -c | sort -n | tail -n 20
 }
 
@@ -80,7 +85,5 @@
 shift
 case $op in
-    list)
-        mailq | tail -n +2 | grep -v '^ *(' | awk 'BEGIN { RS = "" } { print $8 }' | sort | uniq -c | sort -n
-        ;;
+    list) list;;
     show-rand) show_rand;;
     email) tmpl_email "$@";;
