Change database encoding from UNICODE (alias) to UTF8 in INSTALL - #10189
Open
randolf wants to merge 1 commit into
Open
Change database encoding from UNICODE (alias) to UTF8 in INSTALL#10189randolf wants to merge 1 commit into
randolf wants to merge 1 commit into
Conversation
Updated database creation command to specify UTF8 encoding instead of UNICODE encoding (UNICODE is just an alias for UTF8) and added a note about why the encoding is specified (even though it's not needed in most modern environments where UTF8 is usually the default).
alecpl
requested changes
May 24, 2026
| 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 |
Member
There was a problem hiding this comment.
I don't think this note is really needed, we don't have to explain ourselves. Let's keep it simple
|
|
||
| $ createuser -P roundcube | ||
| $ createdb -O roundcube -E UNICODE roundcubemail | ||
| $ createdb -O roundcube -E UTF8 roundcubemail |
Member
There was a problem hiding this comment.
Please, target the master branch.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Updated database creation command to specify UTF8 encoding instead of UNICODE encoding (UNICODE is just an alias for UTF8) and added a note about why the encoding is specified (even though it's not needed in most modern environments where UTF8 is usually the default).