[Mailman-Users] Mailman backup script

2010-01-12 Thread Young, Darren
We've been using a config_list based shell script for the past several
years to backup all of our Mailman mailing lists. While I was in making
some changes today I thought I would post it, perhaps the community can
get some value out of it as well.

It is available at:
http://home.uchicago.edu/~youngd/mailman/dump_configs.txt


Darren Young
Systems  Security Architect
Computing Services
University of Chicago
Booth School of Business
5807 South Woodlawn Avenue
Chicago, IL 60637
Voice 773.702.0331 | Fax 773.702.0233


--
Mailman-Users mailing list Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
Security Policy: http://wiki.list.org/x/QIA9
Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/
Unsubscribe: 
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


Re: [Mailman-Users] mailman backup script?

2003-09-11 Thread Christian Schoepplein
Hello!

On Mit, Sep 10, 2003 at 02:35:49 -0700, Merle Reine wrote:
 I am looking for the best way to backup all of mailman.  I am using the 
 following script but is there a built in utility to do this?  I am using 
 SuSe Open Exchange 4 with mailman.

Take a look into the mailman FAQ, AFAIk there is a script to backup all 
necesary things.

Regards,
Schoeppi

-- 
Christian Schoepplein | Beste Rockband der Welt: http://www.lily-rockt.de
[EMAIL PROTECTED] | Linux fuer Blinde: http://www.blinux.suse.de

--
Mailman-Users mailing list
[EMAIL PROTECTED]
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/

This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org


[Mailman-Users] mailman backup script?

2003-09-10 Thread Merle Reine
I am looking for the best way to backup all of mailman.  I am using the 
following script but is there a built in utility to do this?  I am using 
SuSe Open Exchange 4 with mailman.
Seems there would be a mailman script to backup mailman:

#!/bin/bash

export PATH=/bin:/sbin:/usr/sbin:/usr/bin/

BACKUPFILE=backup-$(date +%Y%m%d%H%M%S).tar



rcldap stop

rcfetchd stop

rcpostfix stop

rccyrus stop

rcgroupware stop

rcwebmail stop

rcpostgresql stop

tar cvf $BACKUPFILE /etc/

tar rvf $BACKUPFILE /var/lib/imap/

tar rvf $BACKUPFILE /var/spool/imap/

tar rvf $BACKUPFILE /var/spool/postfix/

tar rvf $BACKUPFILE /var/lib/ldap/

tar rvf $BACKUPFILE /var/lib/pgsql/

tar rvf $BACKUPFILE /var/lib/sieve/

tar rvf $BACKUPFILE /var/opt/comfire/filespool/

tar rvf $BACKUPFILE /var/named/

tar rvf $BACKUPFILE /home/

tar rvf $BACKUPFILE /etc/cron.d/mailman

tar rvf $BACKUPFILE /var/lib/mailman/

tar rvf $BACKUPFILE /root/uploadfix.sh



rcpostgresql start

rcwebmail start

rcgroupware start

rccyrus start

rcpostfix start

rcldap start

rcfetchd start

--
Merle Reine
Lindows.com IT Department
--
Mailman-Users mailing list
[EMAIL PROTECTED]
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/
This message was sent to: [EMAIL PROTECTED]
Unsubscribe or change your options at
http://mail.python.org/mailman/options/mailman-users/archive%40jab.org