Changes between Version 10 and Version 11 of AccountManagerPlugin/AuthStores


Ignore:
Timestamp:
Dec 13, 2011, 12:08:45 AM (12 years ago)
Author:
Steffen Hoffmann
Comment:

fix option name for HtDigestStore and add recent information for SessionStore too

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin/AuthStores

    v10 v11  
    2828; and its parent folder
    2929;password_file = /var/trac/trac.htdigest   # old style (acct_mgr < 0.4)
    30 htdigest_password_file = /var/trac/trac.htdigest   # new style (acct_mgr >= 0.4)
     30htdigest_file = /var/trac/trac.htdigest   # new style (acct_mgr >= 0.4)
    3131
    3232; the name of the authentication “realm”
     
    106106 '''Package''':: acct_mgr.db
    107107
    108 Stores password information in the trac database. This may give better behaviour if you have large numbers of users and are finding errors due to write contention on the password file. You must enable one or other of the hash method components. !HtDigestHashMethod is the default.
     108Stores password information in the trac database. This may give better behavior if you have large numbers of users and are finding errors due to write contention on the password file. You must enable one or other of the hash method components. !HtDigestHashMethod is the default.
    109109
    110110{{{
     
    119119[account-manager]
    120120password_store = SessionStore
    121 ; choose one of the hash methods
     121; choose one of the hash methods with corresponding supplemental option
    122122hash_method = HtDigestHashMethod
    123 hash_method = HtPasswdHashMethod
    124 
     123db_htdigest_realm = TracDbRealm
     124;hash_method = HtPasswdHashMethod
     125;db_htpasswd_hash_type = sha
    125126}}}
    126127
    127 For more information see:
     128Recent changes:
     129 * fixture to undesired option inheritance implementation available since [10494] for `acct_mgr-0.4`
     130  * 'db_htdigest_realm' Realm to select relevant htdigest db entries
     131  * 'db_htpasswd_hash_type' for hash type selection
     132
     133For sample configuration settings see  [wiki:CookBook/AccountManagerPluginConfiguration#SessionStore our cookbook] page
     134
     135For historic background of this `IPasswordStore` implementation see:
    128136  http://www.mailinglistarchive.com/trac-users@googlegroups.com/msg03696.html
    129137
    130 For sample configuration settings see  [wiki:SessionStoreSampleSettings sample-settings]
    131138== !SvnServePasswordStore ==
    132139 '''Package''':: acct_mgr.svnserve