How to disable email confirmations? #2046
-
Hey there, is it possible to deactivate the sending of email confirmations? I want to add a dummy account for external users (e.g. [email protected]), because I don't want everyone to be able to use my instance. Best, |
Beta Was this translation helpful? Give feedback.
Answered by
pglombardo
Apr 12, 2024
Replies: 1 comment 2 replies
-
Hi @bliepp - Just to be sure: you are running your own self-hosted instance and want to disable user account confirmations entirely? Is that correct? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Not a dumb request at all. I'm planning some new features for this exact use case. But for now, there isn't an easy way to remove the account confirmation requirement.
You could manually confirm accounts from the application console. This directly modifies data though so be careful and maybe backup the database first.
docker exec -it <container id> bash
)cd /opt/PasswordPusher
./bin/pwpush console
user = User.where(email: '[email protected]').first
user.confirm
user.save
or alternatively, add a date/time to the
confirmed_at
field for the user in the admin console (/admin
).