1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00

Case is irrelevant when sorting mail redirects

PR:		21600
Submitted by:	David Wolfskill <dhw@whistle.com>
This commit is contained in:
Brian Somers 2000-10-02 21:54:38 +00:00
parent 005b841fd6
commit 0655ee8d72
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66561

View File

@ -50,7 +50,7 @@ case "$daily_status_mail_rejects_enable" in
} |
perl -ne "print \"\$2\n\"
if (/reject=/ and /^$start.*ruleset=check_\S+,\s+arg1=(<[^@]+@)?([^>,]+).*reject=/o);" |
sort | uniq -c | sort -nr | tee /dev/stderr | wc -l)
sort -f | uniq -ic | sort -fnr | tee /dev/stderr | wc -l)
[ $rc -gt 0 ] && rc=1
fi;;