Validating email (until Cloudron 9 is released)
Fider
1
Posts
1
Posters
31
Views
1
Watching
-
Because of a limitation in Cloudron, email delivery does not work with Fider (unless you have Cloudron incoming email on the same server). Since Fider uses passwordless login, email is quite fundamental for the app to work .
Email delivery works in Cloudron 9. But until then:
- Open a Web Terminal and run
cloudron_postgresql -c "SELECT key FROM email_verifications WHERE email='test@cloudron.io' AND verified_at IS NULL ORDER BY created_at DESC"
. This will be something like below:
root@c718a90f-0084-4dd1-91c1-4402218b8b4a:/app/code# cloudron_postgresql -c "SELECT key FROM email_verifications WHERE email='test@cloudron.io' AND verified_at IS NULL ORDER BY created_at DESC" key ------------------------------------------------------------------ tluwF0dZd413hld6Ofg0DQJIp8JqVkBXPbWLGuZtj5DaJBlMl6zTxsyWhCdUapwF (1 row)
- Then, in browser:
https://fider.domain.com/signin/verify?k=THE-KEY-ABOVE
.
It's a bit brutal but it's what it is right now
- Open a Web Terminal and run