Delete mail from specific sender from postfix queue
To delete all email in the queue from a specific email address run this command as root: postqueue -p | tail -n +2 | awk 'BEGIN { RS = "" } /username@example\.com/ { print $1 }' | tr -d '*!' … Continue reading
Posted in Linux
Leave a comment