mirror of
https://github.com/iredmail/iRedMail
synced 2026-06-08 14:51:59 +00:00
8 lines
120 B
SQL
8 lines
120 B
SQL
-- Delete anonymouse user.
|
|
USE mysql;
|
|
|
|
DELETE FROM user WHERE User='';
|
|
DELETE FROM db WHERE User='';
|
|
|
|
FLUSH PRIVILEGES;
|