CURRENT VERSION:

v0.32

CREATED:

Kelvin Ho. v0.1 2002-07-01.
Licensed under the GNU GPL. For full terms see the file COPYING.

UPDATES:

2003-05-30 Modified by Jon Nelson (quincy@linuxnotes.net) to be 
           compatiable with SquirrelMail 1.4.
         
           Created this README.

2003-06-25 Jon Nelson takes over as maintainer.

2003-07-02 Added sqgetGlobalVar lines to make plugin work with
           register_globals = Off.

2003-10-27 Added il8n support and the Spanish translation with 
           tremendous help from Rodolfo.

           French translation added with alot of help from Cdric.
      
           This should also take of the problem of not being able
           to see the members of a newly created group.

           It should also take care of the error:
           Fatal error: Call to undefined function: fetchrow() in...

INSTALL:

Backend for personal addressbook stored in a database,
accessed using the DB-classes in PEAR. Follow the instructions
in doc/db-backend.txt to get that setup. 

When you've got that done copy the tar.gz to plugins/ directory 
and:

  tar zxvf abook_group.tar.gz 

You'll need to create an addressgroups table in your database. 
The table used should have the following columns:

    Columns   | Type | Modifier
--------------+------+----------
 owner        | text |
 nickname     | text |
 addressgroup | text |
 type         | text |

The pair (owner,nickname, addressgroup, type) should be unique.

The (owner,nickname) pair is the unique reference to the addressbook
of the owner.

Type comes in when you have two different types of address books:
abook_database.php
abook_global_database.php

To create the table you could use something like this:

create table addressgroups(
 owner varchar(128),
 nickname varchar(128),
 addressgroup varchar(128),
 type varchar(128)
 );

The lengths and datatype of the fields are suggested. Modify them to suit
your needs, especially if you use a different database. 

TRASLATIONS:

Anyone able to provide me with translations you'll find the most current 
.po in plugins/abook_group/po/.

Please send them to me @ quincy@linuxnotes.net.
