#!/bin/sh # $1 is the name of the list, message on stdin. case $1 in # Publicly-accessible lists. baltwash-burning|umbclinux|gnu-screen) #lurker-index -c /etc/lurker/lurker.conf -l $1 -m ;; # Individually private lists. burningass) cat >> /phil/$1 #lurker-index -c /etc/lurker/$1.conf -l $1 -m ;; freecycle*|owner-freecyclebaltimore) cat >> /phil/$1 #lurker-index -c /etc/lurker/freecycle.conf -l $1 -m ;; *) cat > /dev/null ;; esac