Changes between Version 67 and Version 68 of AccountManagerPlugin


Ignore:
Timestamp:
Jun 4, 2009, 8:47:27 AM (15 years ago)
Author:
Barbara Post
Comment:

Added SvnServePasswordStore section (missing)

Legend:

Unmodified
Added
Removed
Modified
  • AccountManagerPlugin

    v67 v68  
    215215  http://www.mailinglistarchive.com/trac-users@googlegroups.com/msg03696.html
    216216
     217=== !SvnServePasswordStore ===
     218 '''Package''':: acct_mgr.svnserve
     219
     220Allows Trac to use SVN users (may be in addition to Trac users). SVN server configuration option should be "svnserve". For more informations, read chapter 6 of [http://svnbook.red-bean.com/ SVN book].
     221
     222{{{
     223[components]
     224; be sure to enable the component
     225acct_mgr.svnserve.* = enabled
     226acct_mgr.svnserve.svnservepasswordstore = enabled
     227; choose one of the hash methods
     228acct_mgr.pwhash.htdigesthashmethod = enabled
     229acct_mgr.pwhash.htpasswdhashmethod = enabled
     230
     231[account-manager]
     232password_store = SvnServePasswordStore
     233password_file = /path/to/svn/repos/conf/passwd
     234; choose one of the hash methods
     235hash_method = HtDigestHashMethod
     236hash_method = HtPasswdHashMethod
     237}}}
     238
     239NB : `password_file` points to a file which defines users/passwords this way : `user = password`
     240
    217241=== !AccountManagerAdminPage ===
    218242 '''Package''':: acct_mgr.admin