Skip to content

Instantly share code, notes, and snippets.

@Sam-R
Sam-R / postfix-queue-delete-connection-error-mails.md
Created October 16, 2019 17:33 — forked from jkullick/postfix-queue-delete-connection-error-mails.md
Delete Connection Error Mails from Postfix Queue
mailq | \
  grep -E "Connection (refused|timed out)" -B1 | \
  grep -E "^[A-Z0-9]{11}\s+" | \
  awk '{print $1}' | \
  postsuper -d -
@Sam-R
Sam-R / postfix-queue-delete-connection-error-mails.md
Created October 16, 2019 17:33 — forked from jkullick/postfix-queue-delete-connection-error-mails.md
Delete Connection Error Mails from Postfix Queue
mailq | \
  grep -E "Connection (refused|timed out)" -B1 | \
  grep -E "^[A-Z0-9]{10}\s+" | \
  awk '{print $1}' | \
  postsuper -d -