From 2a67673c077c6a73134a9143d74e20a37e60bd44 Mon Sep 17 00:00:00 2001 From: Paul Rodger Date: Sun, 31 Mar 2002 05:01:04 +0000 Subject: Added example cron script and more info. --- README | 43 +++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 41 insertions(+), 2 deletions(-) (limited to 'README') diff --git a/README b/README index 91906a9..9f679be 100644 --- a/README +++ b/README @@ -14,8 +14,47 @@ just the most recent messages. 'archivemail' can save a lot of disk space and will significantly reduce overhead on your mail reader. The number of days before mail is considered -'old' is up to you, but the default is 180 days. +'old' is up to you, but the default is 180 days. To see the options +archivemail supports, try running 'archivemail --help'. 'archivemail' currently works on mbox-format and maildir-format mailboxes, and requires python v2.0 or greater. It also supports deleting old mail -instead of archiving it. +instead of archiving it with the '--delete' option. + +The best way to run archivemail is from cron. Giving the '-q' option to +archivemail will make it quiet, only printing messages if something went +wrong. + +archivemail is not exactly blazingly quick at the moment, but if you run it +from cron you won't mind. Archiving from maildir mailboxes instead of 'mbox' +is a lot quicker too, since we don't have to do to as much effort to delete +mail from the original mailbox. + +Here is an example script I use for running archivemail from cron: +__________________________________________________________________________ + +#!/bin/sh +#set -x +set -e +ARCMAIL="archivemail --output-dir=$HOME/Mail/Archive/ " + +$ARCMAIL --days 30 --delete $HOME/Mail/duplicates +$ARCMAIL --days 90 $HOME/Mail/bugtraq \ + $HOME/Mail/debian-devel \ + $HOME/Mail/debian-mentors \ + $HOME/Mail/debian-user \ + $HOME/Mail/jobs \ + $HOME/Mail/linux-kernel \ + $HOME/Mail/python-list \ + $HOME/Mail/spam \ + $HOME/Mail/spam-l \ +$ARCMAIL $HOME/Mail/cm-melb \ + $HOME/Mail/exsouthrock \ + $HOME/Mail/received \ + $HOME/Mail/sent \ + $HOME/Mail/vim +__________________________________________________________________________ + +The archivemail website is at: http://archivemail.sourceforge.net/ + +-- Paul Rodger -- cgit v1.2.3