Dave Foran wrote:
>
>But the option I really do like is that every night the contents of the
>users distibution list
>is e-mailed to the list owner and the users are backed up into a 3 day
>rotation..
>
>Does mailman have a provision for backing up the users list on a daily basis


Not out of the box, but you could add a cron job to run
bin/list_members and mail the result to the list owner. You could use
bin/list_lists to get the list names. something like

#!/bin/bash
prefix=/path/to/mailman
for list in `$prefix/bin/list_lists --bare`
do $prefix/bin/list_members -f -p $list \
| mail -s "Members of the $list list" [EMAIL PROTECTED]
done

You could also add something to that script to rotate a few generations
of $prefix/lists/$list/config.pck

cp $prefix/lists/$list/config.pck.2 $prefix/lists/$list/config.pck.3
cp $prefix/lists/$list/config.pck.1 $prefix/lists/$list/config.pck.2
cp $prefix/lists/$list/config.pck $prefix/lists/$list/config.pck.1

The config.pck file contains all the member data and the list
configuration basically everything about the list except archives,
held messages and pending requests.

-- 
Mark Sapiro <[EMAIL PROTECTED]>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan

------------------------------------------------------
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: 
http://www.python.org/cgi-bin/faqw-mm.py?req=show&amp;file=faq01.027.htp

Reply via email to