]> git.donarmstrong.com Git - roundcube.git/blobdiff - INSTALL
Depends on libjs-jquery (>= 1.3) since this is now used by roundcube.
[roundcube.git] / INSTALL
diff --git a/INSTALL b/INSTALL
index 0cbc43b6639224e3b1c09585ad728847f473039e..fe71cdf167ff5d072b83da4631991c4df5ab3d4e 100644 (file)
--- a/INSTALL
+++ b/INSTALL
@@ -59,7 +59,7 @@ importing the table layout and granting the proper permissions to the
 roundcube user. Here is an example of that procedure:
 
 # mysql
-> CREATE DATABASE roundcubemail;
+> CREATE DATABASE roundcubemail /*!40101 CHARACTER SET utf8 COLLATE utf8_general_ci */;
 > GRANT ALL PRIVILEGES ON roundcubemail.* TO roundcube@localhost
     IDENTIFIED BY 'password';
 > quit
@@ -94,7 +94,7 @@ simple steps, which have to be done as the postgres system user (or
 which ever is the database superuser):
 
 $ createuser roundcube
-$ createdb -O roundcube roundcubemail
+$ createdb -O roundcube -E UNICODE roundcubemail
 $ psql roundcubemail
 
 roundcubemail =# ALTER USER roundcube WITH PASSWORD 'the_new_password';