On Tue, Jun 05, 2001 at 07:38:04PM -0700, Sarah K. Miller wrote:
> I know many people have asked for a way to remove a single address from multiple
>lists. Here's my solution (run as a script):
Or, faster, a patch I wrote for remove_members:
https://sourceforge.net/tracker/?func=detail&aid=41325
I know many people have asked for a way to remove a single address from multiple
lists. Here's my solution (run as a script):
#!/bin/ksh
if [ -z $1 ];then
print usage: mass_remove email_address
exit
fi
email=$1
lists=`/home/mailman/bin/find_member $email |grep -v found`
if [ ""$l