Changes between Version 5 and Version 6 of AccountManagerPlugin/RegistrationInspector


Ignore:
Timestamp:
Aug 11, 2012, 10:28:41 PM (12 years ago)
Author:
Steffen Hoffmann
Comment:

document newly available option in AcctMgr configuration

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin/RegistrationInspector

    v5 v6  
    5959
    6060== Modular Registration Checks ==
     61=== Configuration ===
     62Since `acct_mgr-0.4` you have control over number and order of registration checks through an option in `trac.ini` (showing default value here):
     63{{{
     64#!cfg
     65[account-manager]
     66register_check = BasicCheck, EmailCheck, UsernamePermCheck
     67}}}
     68
     69This is an `OrderedExtensionsOption`. Consequently list items must be enabled components, that implement the `IAccountRegistrationInspector` interface (see following section for details).
     70
    6171=== Interface Definition ===
    6272{{{