mirror of
https://github.com/DanWin/mail-hosting.git
synced 2024-11-22 07:30:26 +00:00
4 lines
183 B
Bash
4 lines
183 B
Bash
|
#!/bin/sh
|
||
|
(test "$1" != "") || (echo "Need email address to delete from queue" && exit 1)
|
||
|
for i in `mailq | grep "$1" | awk '{print $1;}' | sed -e 's/\*//'`; do postsuper -d $i; done
|