Feed on
Posts
Comments

Tag Archive 'mailman'

Here’s a little bash script to display the name of all lists in your mailman site and the number of subscribers for each list, just run it in the same directory as your mailman binaries (/usr/lib/mailman/bin on Debian): 123456#!/bin/bash LISTS=$((`./list_lists | wc -l` – 1)) LISTS=`./list_lists | tail -n$LISTS | awk ‘{ print $1 }’` [...]

Read Full Post »