From 1cded85790206afe084e1baff371c543711b2b18 Mon Sep 17 00:00:00 2001
From: thomascube <thomas@roundcube.net>
Date: Sat, 03 Dec 2005 11:54:12 -0500
Subject: [PATCH] Re-design of caching (new database table added\!); some bugfixes; Postgres support

---
 INSTALL |   20 ++++++++++++++++++++
 1 files changed, 20 insertions(+), 0 deletions(-)

diff --git a/INSTALL b/INSTALL
index cca4fa1..f343c82 100644
--- a/INSTALL
+++ b/INSTALL
@@ -31,6 +31,7 @@
 > quit
 # mysql roundcubemail < SQL/mysql.initial.sql
 
+
 * SQLite
 --------
 Sqlite requires specifically php5 (sqlite in php4 currently doesn't
@@ -44,6 +45,25 @@
 webserver can write to the file.
 
 
+* PostgreSQL
+------------
+To use RoundCube with PostgreSQL support you have to follow the next
+simple steps, which have to be done with the postgres system user (or
+which ever is the database superuser):
+
+$ createuser roundcubemail
+$ createdb -O roundcubemail roundcubemail
+$ psql roundcubemail
+
+roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';
+roundcubemail =# \c - roundcubemail
+roundcubemail => \i SQL/postgres.initial.sql
+
+All this has been tested with PostgreSQL 8.0.x and 7.4.x. Older
+versions don't have a -O option for the createdb, so if you are
+using that version you'll have to change ownership of the DB later.
+
+
 UPGRADING
 =========
 If you already have a previous version of RoundCube installed,

--
Gitblit v1.9.1