18 | | Email Verification for Self-Registration can be enabled in {{{controllers/default.py}}}.[[BR]] |
19 | | This requires the ability to send emails (server details currently set in {{{modules/sahana.py}}}) |
20 | | |
| 18 | Some Auth options are currently only configurable via editing {{models/__db.py}}: |
| 19 | {{{ |
| 20 | mail.settings.server |
| 21 | mail.sender |
| 22 | auth.settings.login_methods.append(ldap_auth()) |
| 23 | auth.settings.registration_requires_verification |
| 24 | auth.settings.captcha |
| 25 | auth.messages.verify_email |
| 26 | auth.settings.registration_requires_approval |
| 27 | auth.settings.gmail_login |
| 28 | }}} |
| 29 | In time we could expose to a Web-based admin page, although it's low priority as these are mostly installation-time decisions. |