Currently, I am using Gitlab. However, some users cannot receive the confirmation email and cannot log in.
I would like to confirm them through my admin privilege, or configure the system not to send the email confirmation.
Any ideas?
Currently, I am using Gitlab. However, some users cannot receive the confirmation email and cannot log in.
I would like to confirm them through my admin privilege, or configure the system not to send the email confirmation.
Any ideas?
Like @shin-haeng-kang said, for a new user, setting signup_enabled: false
in the site settings and creating users from the admin menu and then editing the password after creating the user will work.
If the users already exists, I found the following issue request that shows how to edit the postgres database manually.
From the gitlab server:
sudo -u git -H psql -d gitlabhq_production
gitlabhq_production=> update users set confirmation_token=null, confirmed_at=now() where confirmed_at is null;
© 2022 - 2025 — McMap. All rights reserved.
signup_enabled: false
, temporarily? So you should be able to create gitlab users via admin access. – Bulger