Remove &amp usage from Location headers
[squirrelmail.git] / doc / db-backend.txt
CommitLineData
6ff1c690 1$Id$
2
3
4Storing private addressbooks and preferences in a database
5==========================================================
6
7
8On sites with many users you might want to store your user data in a
1e63b430 9database instead of in files. This document describes how to configure
6ff1c690 10SquirrelMail to do this.
11
12Methods for storing both personal addressbooks and user preferences in
1e63b430 13a database is included as a part of the distribution.
6ff1c690 14
15
16
17Configuring PEAR DB
18-------------------
19
4dccdc01 20For this to work you must have the PEAR classes installed, these are
21part of PHP. Once these are installed you must have sure the directory
22containg them is a part of your PHP include path. See the PHP
23documentation for information on how to do that.
24Under Mandrake Linux the PEAR classes are installed as part of the
25php-devel package and under FreeBSD they are installed as part of
26the mod_php4 or php4 port/package. I'm afraid I have no information on
27other systems at the present time.
6ff1c690 28
29
30Configuring addressbooks in database
31------------------------------------
32
33First you need to create a database and a table to store the data in.
34Create a database user with access to read and write in that table.
35
36For MySQL you would normally do something like:
37
38 (from the command line)
39 # mysqladmin create squirrelmail
40
41 (from the mysql client)
42 mysql> GRANT select,insert,update,delete ON squirrelmail.*
588f1ca4 43 TO squirreluser@localhost IDENTIFIED BY 'sqpassword';
6ff1c690 44
45The table structure should be similar to this (for MySQL):
46
47 CREATE TABLE address (
1e63b430 48 owner varchar(128) DEFAULT '' NOT NULL,
6ff1c690 49 nickname varchar(16) DEFAULT '' NOT NULL,
50 firstname varchar(128) DEFAULT '' NOT NULL,
51 lastname varchar(128) DEFAULT '' NOT NULL,
52 email varchar(128) DEFAULT '' NOT NULL,
53 label varchar(255),
54 PRIMARY KEY (owner,nickname),
55 KEY firstname (firstname,lastname)
56 );
57
7ac2b372 58and similar to this for PostgreSQL:
59CREATE TABLE "address" (
60 "owner" varchar(128) NOT NULL,
61 "nickname" varchar(16) NOT NULL,
62 "firstname" varchar(128) NOT NULL,
63 "lastname" varchar(128) NOT NULL,
64 "email" varchar(128) NOT NULL,
65 "label" varchar(255) NOT NULL,
66 CONSTRAINT "address_pkey" PRIMARY KEY ("nickname", "owner")
67);
68CREATE UNIQUE INDEX "address_firstname_key" ON "address"
69 ("firstname", "lastname");
70
6ff1c690 71
4f40a59d 72Next, edit your configuration so that the address book DSN (Data Source
73Name) is specified, this can be done using either conf.pl or via the
74administration plugin. The DSN should look something like:
6ff1c690 75
3499f99f 76 mysql://squirreluser:sqpassword@localhost/squirrelmail
6ff1c690 77
78From now on all users' personal addressbooks will be stored in a
79database.
80
81
82
83Configuring preferences in database
84-----------------------------------
85
3499f99f 86This is done in much the same way as it is for storing your address
87books in a database.
88
89The table structure should be similar to this (for MySQL):
6ff1c690 90
91 CREATE TABLE userprefs (
1e63b430 92 user varchar(128) DEFAULT '' NOT NULL,
6ff1c690 93 prefkey varchar(64) DEFAULT '' NOT NULL,
1e63b430 94 prefval BLOB DEFAULT '' NOT NULL,
6ff1c690 95 PRIMARY KEY (user,prefkey)
96 );
97
7ac2b372 98and for PostgreSQL:
99CREATE TABLE "userprefs" (
100 "user" varchar(128) NOT NULL,
101 "prefkey" varchar(64) NOT NULL,
102 "prefval" text,
103 CONSTRAINT "userprefs_pkey" PRIMARY KEY ("prefkey", "user")
104);
105
3499f99f 106Next, edit your configuration so that the preferences DSN (Data Source
107Name) is specified, this can be done using either conf.pl or via the
108administration plugin. The DSN should look something like:
109
110 mysql://squirreluser:sqpassword@localhost/squirrelmail
111
112From now on all users' personal preferences will be stored in a
113database.
6ff1c690 114
115Default preferences can be set by altering the $default array in
3499f99f 116db_prefs.php.
6ff1c690 117