Changes between Version 43 and Version 44 of AccountManagerPlugin


Ignore:
Timestamp:
Mar 2, 2008, 1:18:46 PM (16 years ago)
Author:
David Heath
Comment:

Add documentation about SessionStore

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin

    v43 v44  
    170170</Directory>
    171171}}}
     172
     173=== !SessionStore ===
     174 '''Package''':: acct_mgr.db
     175
     176Stores 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.
     177
     178{{{
     179[components]
     180; be sure to enable the component
     181acct_mgr.db.SessionStore = enabled
     182; choose one of the hash methods
     183acct_mgr.pwhash.htdigesthashmethod = enabled
     184acct_mgr.pwhash.htpasswdhashmethod = enabled
     185
     186[account-manager]
     187password_store = SessionStore
     188hash_method = HtDigestHashMethod
     189
     190}}}
     191
     192For more information see:
     193  http://www.mailinglistarchive.com/trac-users@googlegroups.com/msg03696.html
    172194
    173195=== !AccountManagerAdminPage ===