source: TracAccountManager/0.10/README

Last change on this file was 2, checked in by guillaume, 16 years ago

Ajout TracAccountManager en français

File size: 687 bytes
Line 
1= TracAccountManager =
2
3A 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 ==
12Add one of the following sections to trac.ini to manage an Apache htpasswd or
13htdigest file.
14
15=== Htpasswd ===
16{{{
17[account-manager]
18password_format = htpasswd
19password_file = /path/to/trac.htpasswd
20}}}
21
22=== Htdigest ===
23{{{
24[account-manager]
25password_format = htdigest
26password_file = /path/to/trac.htdigest
27htdigest_realm = TracDigestRealm
28}}}
29
Note: See TracBrowser for help on using the repository browser.