summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJannis M. Hoffmann <jannis@fehcom.de>2024-11-06 17:46:57 +0100
committerJannis M. Hoffmann <jannis@fehcom.de>2024-11-06 17:46:57 +0100
commitfdb1a232b3efc23bffb7c75c4e8975a60b449c8f (patch)
tree9bfd709363822905cc83a721f674164b7bc087bc
parentac5110e022dd69cd7b6b667a2349f654cb683b0d (diff)
correct README as REPLACE is not a privilege
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 102d867..872fa20 100644
--- a/README.md
+++ b/README.md
@@ -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';