Disable Manual Activation for a New Account in Open edX
To disable manual activation for a new registration, follow the steps below:
-
Go to Open edX server console.
-
Open and edit LMS configuration (lms.env.json).
-
Then find the
"FEATURES"
configuration, add SKIP_EMAIL_VALIDATION into"FEATURES"
array and set to true. See the following codes snippet:
"FEATURES": {
...
"SKIP_EMAIL_VALIDATION": true,
...
},
- Restart LMS services.