Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Sam-R/817e5b0950dc75a5f606fb4e02fc1c5e to your computer and use it in GitHub Desktop.
Save Sam-R/817e5b0950dc75a5f606fb4e02fc1c5e to your computer and use it in GitHub Desktop.
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 -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment