Changes between Version 19 and Version 20 of AccountManagerPlugin


Ignore:
Timestamp:
Aug 4, 2006, 8:49:34 PM (18 years ago)
Author:
Matt Good
Comment:

screenshot of enabling components in trac:WebAdmin

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin

    v19 v20  
    11= Account Manager Plugin =
     2
     3[[PageOutline(2-3)]]
    24
    35== Description ==
    46
    5 Trac plugin to enable users to register new accounts or manage their existing account.
     7The AccountManager offers several features for managing user accounts:
     8 * allow users to register new accounts
     9 * login via an HTML form instead of using HTTP authentication
     10 * allow existing users to change their passwords or delete their accounts
     11
     12These features are new in the plugin for Trac 0.10.
     13 * send a new password to users who've forgotten their password
     14 * administration of user accounts
    615
    716== Bugs/Feature Requests ==
     
    4251{{{
    4352svn co http://trac-hacks.org/svn/accountmanagerplugin/0.9
     53}}}
     54
     55== Components ==
     56
     57In order to use the features of the AccountManager you will need to enable some or all of its components.
     58
     59The easiest way to enable the components is via the trac:WebAdmin plugin.  Users logged in with the TRAC_ADMIN permission will be able to manage the enabled components:
     60
     61[[Image(components-admin.png)]]
     62
     63Components can also be enabled or disabled in the [trac:TracIni trac.ini] file under the `[components]` section.  For example to enable the login form and disable user registration:
     64
     65{{{
     66[components]
     67acct_mgr.web_ui.LoginModule = enabled
     68acct_mgr.web_ui.RegistrationModule = disabled
    4469}}}
    4570