Installing the package:
-----------------------

  Once you have sucessfully unpacked and untared the tar file that you 
downloaded you will be left with a directory that looks something like 
this:


COPYING    README     dopen      out
CREDITS    dbm        m1.pl      rotate.pl

The files of intrest are dopen and rotate.pl, in your favorite editor open
the dopen file. In this file the following fields will need altering:
----
$DbmDir         = '/export/home/gregm/pack/dbm/';       # The Database directory
$DataDir        = '/usr/adm/radacct';   		# The dir to read from.
$TmpDir         = '/export/home/gregm/pack/out';        # The tmp dir.
$sysadmin       = 'marius@randomc.com'; 		# For the '-M' option.
$MAILER         = '/usr/lib/sendmail';  		# The mailer.
----
Define each of the above fields as follows:
$DbmDir  -- Set this to a directory that the script will write its temporary
            dbm files. 
$DataDir -- Set this to point to the top level directory where you have the
            radiusd storing its acctounting information. Its set by default 
            to where the distributed Radius software stores this information
            only change this if you have an odd radiusd.
$TmpDir  -- Set this to point to a directory where you would like the output
            from this script to go.
$sysadmin - Set this to point at a vaild mail address where you would like
            reports mailed to. Only vaild when using the '-m' option.
$MAILER  -- Set this to point at where your sendmail lives. (or other mailer
            that will accept the sendmail flags)

Once you have all this set your ready for a test run.. Note: parsing the files
can take quite a while and no output is written to standard out while its 
running so patience is a must.

See the man page for a description of the various options that the script 
understands.


