You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ALTER TABLE users DROP pass;
ALTER TABLE users DROP mail;
ALTER TABLE users DROP init;
ALTER TABLE users ADD pass VARCHAR( 32 ) NOT NULL DEFAULT '2c57ea903930c8530a4c71af00b6e749' AFTER name;
ALTER TABLE users ADD mail VARCHAR( 64 ) NOT NULL DEFAULT '[email protected]' AFTER pass;
ALTER TABLE users ADD init VARCHAR( 64 ) NOT NULL DEFAULT '[email protected]' AFTER picture;
UPDATE users SET uid = '0' WHERE name = '';
etc..
etc..
etc..
right now all users have this mail: [email protected]
when you try to change a profile you cannot save it because should be unique. This can potentially produce more problems:
The proposal is to mask user's mail as:
<user>@guifi.net
Implement one of the two options:
The text was updated successfully, but these errors were encountered: