diff options
author | Mark Sapiro <mark@msapiro.net> | 2016-02-20 21:46:24 -0800 |
---|---|---|
committer | Mark Sapiro <mark@msapiro.net> | 2016-02-20 21:46:24 -0800 |
commit | 3c78c57cc88877f701a935ce009efd39d31925e6 (patch) | |
tree | 914a6d0a366eda11b186ea38bd5a7e3f391640b4 | |
parent | b757b1995955babde089b7929adabd195f9d4f11 (diff) | |
download | mailman2-3c78c57cc88877f701a935ce009efd39d31925e6.tar.gz mailman2-3c78c57cc88877f701a935ce009efd39d31925e6.tar.xz mailman2-3c78c57cc88877f701a935ce009efd39d31925e6.zip |
Modified contrib/mmdsr to correctly report No such list names that contain ".
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | contrib/mmdsr | 6 |
2 files changed, 8 insertions, 1 deletions
@@ -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 <mark@msapiro.net> +# 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 |