Skip to content

Instantly share code, notes, and snippets.

@jkullick
Last active February 19, 2021 16:35
Show Gist options
  • Save jkullick/9bb938e05481e47a74850b443bc132b8 to your computer and use it in GitHub Desktop.
Save jkullick/9bb938e05481e47a74850b443bc132b8 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]{10}\s+" | \
  awk '{print $1}' | \
  postsuper -d -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment