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

View File

@ -50,7 +50,7 @@ case "$daily_status_mail_rejects_enable" in
} | } |
perl -ne "print \"\$2\n\" perl -ne "print \"\$2\n\"
if (/reject=/ and /^$start.*ruleset=check_\S+,\s+arg1=(<[^@]+@)?([^>,]+).*reject=/o);" | 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 [ $rc -gt 0 ] && rc=1
fi;; fi;;