|
Revision 77, 0.7 kB
(checked in by mgood, 3 years ago)
|
AccountManagerPlugin:
- Fix the spelling of "htpasswd" in the README
- Display an appropriate error message if there isn't a matching IPasswordStore implementation
(fixes #21)
|
| Line | |
|---|
| 1 |
= TracAccountManager = |
|---|
| 2 |
|
|---|
| 3 |
A user account management plugin for Trac. |
|---|
| 4 |
|
|---|
| 5 |
== Installation == |
|---|
| 6 |
1. Run: python setup.py bdist_egg |
|---|
| 7 |
2. If necessary create a folder called "plugins" in your Trac environment. |
|---|
| 8 |
3. Copy the .egg file from the dist folder created by step 1 into the "plugins" |
|---|
| 9 |
directory of your Trac environment. |
|---|
| 10 |
|
|---|
| 11 |
== Configuration == |
|---|
| 12 |
Add one of the following sections to trac.ini to manage an Apache htpasswd or |
|---|
| 13 |
htdigest file. |
|---|
| 14 |
|
|---|
| 15 |
=== Htpasswd === |
|---|
| 16 |
{{{ |
|---|
| 17 |
[account-manager] |
|---|
| 18 |
password_format = htpasswd |
|---|
| 19 |
password_file = /path/to/trac.htpasswd |
|---|
| 20 |
}}} |
|---|
| 21 |
|
|---|
| 22 |
=== Htdigest === |
|---|
| 23 |
{{{ |
|---|
| 24 |
[account-manager] |
|---|
| 25 |
password_format = htdigest |
|---|
| 26 |
password_file = /path/to/trac.htdigest |
|---|
| 27 |
htdigest_realm = TracDigestRealm |
|---|
| 28 |
}}} |
|---|