#!/bin/bash

#
#	This script will keep daily versions of you mail config files.
#	All you need to do is make it a cron job and add the tarball to the 
#	logrotate config
#




PATH=$PATH:/usr/bin
tar cz -C /etc --exclude backup.tar.gz* mail/ > /etc/mail/backup/backup.tar.gz

