Changes between Version 16 and Version 17 of CookBook/AccountManagerPluginConfiguration


Ignore:
Timestamp:
Dec 30, 2012, 4:09:29 PM (11 years ago)
Author:
Steffen Hoffmann
Comment:

correct basic examples regarding 'lost password' procedure - disabled now by default

Legend:

Unmodified
Added
Removed
Modified
  • CookBook/AccountManagerPluginConfiguration

    v16 v17  
    2626;password_file = /var/trac/trac.htpasswd   ; old style (acct_mgr < 0.4)
    2727htpasswd_file = /var/trac/trac.htpasswd   ; new style (acct_mgr >= 0.4)
     28reset_password = false
    2829}}}
    2930{{{
     
    4344acct_mgr.svnserve.svnservepasswordstore = disabled
    4445acct_mgr.web_ui.* = enabled
     46acct_mgr.web_ui.resetpwstore = disabled
    4547}}}
    4648will:
     
    5052 * use `md5` password hash type for changed/new passwords, hint: use the cryptographically strongest, that is available on your system (and still compatible with other applications in shared-use case)
    5153
    52 ''Note:''  new configuration option 'htpasswd_file' for acct_mgr-0.4
     54''Note:''  new configuration option 'htpasswd_file' for acct_mgr-0.4 and later
    5355 see [wiki:AccountManagerPlugin/AuthStores#HtPasswdStore HtPasswdStore] module documentation for more details
    5456
     
    6163;password_file = /var/trac/trac.htdigest   ; old style (acct_mgr < 0.4)
    6264htdigest_file = /var/trac/trac.htdigest   ; new style (acct_mgr >= 0.4)
     65reset_password = false
    6366}}}
    6467{{{
     
    7881acct_mgr.svnserve.svnservepasswordstore = disabled
    7982acct_mgr.web_ui.* = enabled
     83acct_mgr.web_ui.resetpwstore = disabled
    8084}}}
    8185will:
     
    8589 * set realm to select relevant htdigest file entries to '`Trac`'
    8690
    87 ''Note:''  new configuration option 'htdigest_file' for acct_mgr-0.4
     91''Note:''  new configuration option 'htdigest_file' for acct_mgr-0.4 and later
    8892 see [wiki:AccountManagerPlugin/AuthStores#HtDigestStore HtDigestStore] module documentation for more details
    8993
     
    9599db_htdigest_realm = TracDB
    96100password_store = SessionStore
     101reset_password = false
    97102}}}
    98103{{{
     
    112117acct_mgr.svnserve.svnservepasswordstore = disabled
    113118acct_mgr.web_ui.* = enabled
     119acct_mgr.web_ui.resetpwstore = disabled
    114120}}}
    115121will:
    116122 * enable required AccountManagerPlugin core components
    117  * enable [wiki:AccountManagerPlugin/AuthStores#SessionStore SessionStore] module for file-based password store in ''htdigest'' format
     123 * enable [wiki:AccountManagerPlugin/AuthStores#SessionStore SessionStore] module for Trac db based password store in ''htdigest'' format
     124 * enable `HtDigestHashMethod`, the implicitly default hash method for this store
    118125 * select this store as the only active one
    119  * set realm to select relevant htdigest file entries to '`TracDB`'
    120 
    121 ''Note:''  new configuration option 'db_htdigest_realm' for acct_mgr-0.4
     126 * set realm to select relevant htdigest entries to '`TracDB`'
     127
     128''Note:''  new configuration option 'db_htdigest_realm' for acct_mgr-0.4 and later
    122129 see [wiki:AccountManagerPlugin/AuthStores#SessionStore SessionStore] module documentation for more details
    123130