diff options
author | Jannis M. Hoffmann <jannis@fehcom.de> | 2024-11-06 17:46:57 +0100 |
---|---|---|
committer | Jannis M. Hoffmann <jannis@fehcom.de> | 2024-11-06 17:46:57 +0100 |
commit | fdb1a232b3efc23bffb7c75c4e8975a60b449c8f (patch) | |
tree | 9bfd709363822905cc83a721f674164b7bc087bc | |
parent | ac5110e022dd69cd7b6b667a2349f654cb683b0d (diff) |
correct README as REPLACE is not a privilege
-rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,6 +45,6 @@ Make sure the config file can only be read by user/group `jwebmail` when you spe CREATE TABLE session (user char(64) PRIMARY KEY, password varchar(255), timeout timestamp NOT NULL); CREATE INDEX timeout_idx ON session (timeout); -- Optional -4. Grant privileges to the user jwebmail for the above table for at least SELECT, INSERT, REPLACE, UPDATE and DELETE +4. Grant privileges to the user jwebmail for the above table for at least SELECT, INSERT, UPDATE and DELETE - GRANT SELECT, INSERT, REPLACE, UPDATE, DELETE PRIVILEGES ON 'jwebmaildb1'.'session' TO 'jwebmail'@'localhost'; + GRANT SELECT, INSERT, UPDATE, DELETE PRIVILEGES ON 'jwebmaildb1'.'session' TO 'jwebmail'@'localhost'; |