Skip to Content
मेन्यू
This question has been flagged
2 Replies
3425 Views

Hello,

I use Odoo elearning module and I invite student by email to join the plateform.


During the tests, one of the students didn't receive a verification email so each time he logs in we get the same message.


I don't know how to check why he didn't receive it?


I would also want to know if it is possible to disable completely the email authentification.


Many thanks

Avatar
Discard
Best Answer

hello,


I am using Odoo elearning module and I am inviting students to the platform via email.


During testing, one student did not receive their **verification email**, resulting in the same message being displayed each time they logged in.


I don't know how to find out why this student didn't receive the email.


I would also like to ask if it is possible to completely disable email authentication.


thank you

Avatar
Discard

How can I troubleshoot email delivery issues in Odoo? https://bloxdio2.com

Best Answer

You can check the status of the email by activating developer mode and going to Settings > Technical > Emails.


Regarding your second question, there is a code hack for disabling the email verification which has been discussed in this old thread.

https://www.odoo.com/forum/help-1/question/how-to-work-around-oauth-error-3-on-login-56594

The gist of the hack is this:

in path: add_on/auth_oauth/models/res_users.py

Replace line:

oauth_uid = validation['user_id']

with:

oauth_uid = validation['email']

This way the user can be authenticated by email instead of user_id and you don't have to turn on user signup.

Avatar
Discard