We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 55d0f44 commit e5985c9Copy full SHA for e5985c9
mail/postfix.md
@@ -0,0 +1,7 @@
1
+## Find all emails grouped by from address
2
+
3
+```
4
+$DATE="Oct 1"
5
+$LOG="/var/log/mail.log"
6
+egrep "$DATE.*queue\ active" $LOG | grep -o from=.\*\, | awk -F, '{print $1}' | sort | uniq -c | sort -n
7
0 commit comments