I'm using Trac v0.12.2 with the SvnAuthzAdminPlugin and AccountManagerPlugin. I'm sharing a HtDigest auth file between Trac and Apache/Svn.
trac.ini
[trac]
authz_file = /trac/svnaccess
repository_type = svn
[account-manager]
password_store = HtDigestStore
password_file = /trac/trac.htdigest
htdigest_realm = TracRealm
[components]
acct_mgr.web_ui.LoginModule = enabled
trac.web.auth.LoginModule = disabled
acct_mgr.admin.AccountManagerAdminPages = enabled
acct_mgr.htfile.HtDigestStore = enabled
acct_mgr.pwhash.htdigesthashmethod = enabled
svnauthz.* = enabled
[svnauthzadmin]
show_all_repos = true
For some reason, all users show up in the AccountManagerPlugin's Users menu, but only the TRAC_ADMIN user shows up in the SvnAuthzAdminPlugin select box for adding users to a group. Everything else works exactly the way it should and I can manually add entries to my svnaccess
file. I know it's something small because I've had it working before with, what I thought was, the exact same configuration.
Any help/suggestions are appreciated.