From 3c78c57cc88877f701a935ce009efd39d31925e6 Mon Sep 17 00:00:00 2001 From: Mark Sapiro Date: Sat, 20 Feb 2016 21:46:24 -0800 Subject: Modified contrib/mmdsr to correctly report No such list names that contain ". --- NEWS | 3 +++ contrib/mmdsr | 6 +++++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 50546d78..86608210 100644 --- a/NEWS +++ b/NEWS @@ -51,6 +51,9 @@ Here is a history of user visible changes to Mailman. Bug fixes and other patches + - Modified contrib/mmdsr to correctly report No such list names that + contain ". + - User's "Acknowledge" option will now be honored for posts to anonymous lists. (LP: #1546679) diff --git a/contrib/mmdsr b/contrib/mmdsr index 070db9ba..8cbe55cb 100644 --- a/contrib/mmdsr +++ b/contrib/mmdsr @@ -198,6 +198,10 @@ # Updated on: Sun Jan 31 07:13:47 PST 2016 # Report vette log DMARC lookups as their own # category instead of in other errors. +# +# 0.0.26 Update by Mark Sapiro +# Updated on: Sat Feb 20 21:17:14 PST 2016 +# Properly display No such list names that contain ". ############################################################################### # Set up locations of standard commands, directories, etc.... @@ -448,7 +452,7 @@ do echo "" >> $TMP echo "No Such List:" >> $TMP echo "------------------------------" >> $TMP - $GREP 'No such list' $TMPLOG | $SED -e 's/^[^)]*) //' -e 's/No such list "//' -e 's/".*$//' | $SORT | $UNIQ -c | $SORT -nr >> $TMP + $GREP 'No such list' $TMPLOG | $SED -e 's/^[^)]*) //' -e 's/No such list "//' -e 's/"[^"]*$//' | $SORT | $UNIQ -c | $SORT -nr >> $TMP CNT=`$GREP -i 'shunting' $TMPLOG | $WC -l` if [ "${CNT}x" != "x" ] ; then -- cgit v1.2.3