Installing Lockout
==================

1) Start with untaring the file into the plugins directory.
   Here is a example for the 1.0 version of the lockout plugin.

  $ cd plugins
  $ tar -zxvf lockout-1.0-1.2.tar.gz

2) Change into the lockout/data directory, copy 
   lockout_table.php.sample to lockout_table.php and 
   edit lockout_table.php to build the list of users
   and domains to lock out.

  $ cd lockout/data
  $ cp lockout_table.php.sample lockout_table.php
  $ vi lockout_table.php


3) Then go to your config directory and run conf.pl.  Choose
   option 8 and move the plugin from the "Available Plugins"
   category to the "Installed Plugins" category.  Save and exit.

  $ cd ../../../config/
  $ ./conf.pl

4) Also, please verify that you have the "compatibility" plugin
   installed.



Upgrading Lockout
=================

1) Start with untaring the file into the plugins directory.
   Here is a example for the 1.0 version of the lockout plugin.

  $ cd plugins
  $ tar -zxvf lockout-1.0-1.2.tar.gz

2) Change into the lockout/data directory, check your lockout_table.php
   file against the new version, to see if there are any new 
   settings that you must add to your lockout_table.php file.

  $ cd lockout/data
  $ diff -Nau lockout_table.php lockout_table.php.sample

   Or simply replace your lockout_table.php file with the provided 
   sample and reconfigure the plugin from scratch (see step 2 under 
   the installation procedure above).

