Changes between Version 1 and Version 2 of AccountManagerPlugin/RegistrationInspector


Ignore:
Timestamp:
Aug 11, 2012, 2:07:07 PM (12 years ago)
Author:
Steffen Hoffmann
Comment:

correct and explain configuration examples

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin/RegistrationInspector

    v1 v2  
    33
    44== Involved Modules ==
     5In recent development the following modules have been moved from `web_ui` to their own place: `register`, and the required component activation changed accordingly.
     6
     7For !AccountManager versions before `acct_mgr-0.4` use the following setting instead of the settings mentioned later on:
     8{{{
     9#!cfg
     10[components]
     11acct_mgr.web_ui.RegistrationModule = enabled
     12acct_mgr.web_ui.EmailVerificationModule = enabled
     13}}}
     14
    515=== !RegistrationModule ===
    6  '''Package''':: acct_mgr.web_ui
     16 '''Package''':: acct_mgr.register
    717
    818Enables users to register a new account.  It adds a “Register” link on the same menu bar as the “Login” link.
     
    1424#!cfg
    1525[components]
    16 acct_mgr.web_ui.RegistrationModule = enabled
     26acct_mgr.register.RegistrationModule = enabled
    1727}}}
    1828
     
    2232
    2333=== !EmailVerificationModule ===
    24  '''Package''':: acct_mgr.web_ui
     34 '''Package''':: acct_mgr.register
    2535
    2636If you enable this, users will be sent an email with a verification code to enter, to approve it is really their own email address:
     
    3040#!cfg
    3141[components]
    32 acct_mgr.web_ui.EmailVerificationModule = enabled
     42acct_mgr.register.EmailVerificationModule = enabled
    3343acct_mgr.notification.AccountChangeListener = enabled
    3444}}}
     
    4656for switching this off easily, to restore the old behavior of AccountManagerPlugin by default, is available since changeset [9304] as well.
    4757
    48 As shown in the configuration above, you'll have to enable the accountchangelistener component as well. Without it, verification emails will be silently ignored (but the webui will still say they got sent!).
     58As shown in the configuration above, you'll have to enable the accountchangelistener component as well. Without it, verification emails will be silently ignored (but the web-UI will still say they got sent!).