aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/post_count
diff options
context:
space:
mode:
authorMark Sapiro <mark@msapiro.net>2014-02-16 15:54:48 -0800
committerMark Sapiro <mark@msapiro.net>2014-02-16 15:54:48 -0800
commit37bc0d0aa423d5eab5387cabb188de62d263d76f (patch)
treee1f38bfd32e4db19b4b0560a28cea9453b7ec0e4 /contrib/post_count
parenta509d2cb3f0a696e93e1ecc066cc38c835a8e7b4 (diff)
downloadmailman2-37bc0d0aa423d5eab5387cabb188de62d263d76f.tar.gz
mailman2-37bc0d0aa423d5eab5387cabb188de62d263d76f.tar.xz
mailman2-37bc0d0aa423d5eab5387cabb188de62d263d76f.zip
- Added to the contrib directory, a script from Alain Williams to count
posts in a list's archive.
Diffstat (limited to '')
-rwxr-xr-xcontrib/post_count39
1 files changed, 39 insertions, 0 deletions
diff --git a/contrib/post_count b/contrib/post_count
new file mode 100755
index 00000000..c0aa446c
--- /dev/null
+++ b/contrib/post_count
@@ -0,0 +1,39 @@
+# Show how much email sent through a mailman mail list
+# Copyright (c) Alain Williams <addw@phcomp.co.uk> January 2009
+# This program is free software and is licenced under the GPL: http://www.gnu.org/copyleft/gpl.html
+
+# Set the path to Mailman's private archives directory.
+# Adjust for your installation.
+ARCHIVES="/usr/local/mailman/archives/private"
+
+if [ "$1x" == "x" ] ; then
+ echo "Usage: $0 <list-name>"
+ exit
+fi
+
+cd $ARCHIVES/$1 || exit
+
+echo "Columns: month number-of-messages total-message-size"
+Months="January February March April May June July August September October November December"
+FilesTot=0
+
+# Work out starting year, look for something like: 2004-December
+startYear=$( ls -d [0-9][0-9][0-9][0-9]-* | sort | sed s/-.*// | head -1 )
+endYear=$( date '+%Y' )
+
+for year in $( seq $startYear $endYear )
+do echo "Year $year"
+ YearTot=0
+ for month in $Months
+ do
+ [[ ! -d $year-$month ]] && printf "$year $month\tnone\n" && continue
+ cd $year-$month || exit
+ files=$( ls -f [0-9]* | wc -l )
+ (( FilesTot += files ))
+ (( YearTot += files ))
+ printf "$year $month\t$files\t$( du -h | cut -f 1 )\n"
+ cd .. || exit
+ done
+ echo "Total for year $year: $YearTot"
+done
+echo "Emails total $FilesTot"