Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion INSTALL
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,16 @@ simple steps, which have to be done as the postgres system user (or
which ever is the database superuser):

$ createuser -P roundcube
$ createdb -O roundcube -E UNICODE roundcubemail
$ createdb -O roundcube -E UTF8 roundcubemail

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please, target the master branch.


Note: in some system configurations you might need to add '-U postgres' to
createuser and createdb commands.

Note: most newer versions of PostgreSQL default to UTF8, albeit with a few

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this note is really needed, we don't have to explain ourselves. Let's keep it simple

exceptions (e.g., an Operating System sets the default for the "template1"
database to a non-Unicode encoding), which is why we're careful to
explicitly specify the UTF8 database encoding ("-E" command-line option).

Now you can run the Installer or configure the database access options in
'config/config.inc.php' and run: `bin/initdb.sh --dir=SQL`.

Expand Down