Changes between Version 15 and Version 16 of ConfigurationGuidelines


Ignore:
Timestamp:
05/14/09 21:13:38 (16 years ago)
Author:
Fran Boon
Comment:

Auth options configurable via editing db.py

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationGuidelines

    v15 v16  
    1616In time these will be configured by [wiki:BluePrintWebSetup Web Setup].
    1717
    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 
     18Some Auth options are currently only configurable via editing {{models/__db.py}}:
     19{{{
     20mail.settings.server
     21mail.sender
     22auth.settings.login_methods.append(ldap_auth())
     23auth.settings.registration_requires_verification
     24auth.settings.captcha
     25auth.messages.verify_email
     26auth.settings.registration_requires_approval
     27auth.settings.gmail_login
     28}}}
     29In time we could expose to a Web-based admin page, although it's low priority as these are mostly installation-time decisions.
    2130=== Roles ===
    2231By default the 1st user to register will gain the Administrator role.