|
Revision 1, 429 bytes
(checked in by 235, 4 years ago)
|
|
re-comminting after curios incident with same filenames in upper and lower case`
|
| Line | |
|---|
| 1 | # Copyright (c) 2007 Brandon Low |
|---|
| 2 | # Licensed under the GPL v2 |
|---|
| 3 | |
|---|
| 4 | # Size of the Captcha font |
|---|
| 5 | MIN_FONT_SIZE=15 |
|---|
| 6 | MAX_FONT_SIZE=25 |
|---|
| 7 | |
|---|
| 8 | # The base URL at which the Captcha app is running (for image serving) |
|---|
| 9 | BASE_URL="/captcha" |
|---|
| 10 | |
|---|
| 11 | # The minimum length of the Captcha string |
|---|
| 12 | MIN_LENGTH=4 |
|---|
| 13 | |
|---|
| 14 | # The maximum length of the Captcha String |
|---|
| 15 | MAX_LENGTH=8 |
|---|
| 16 | |
|---|
| 17 | # The timeout in minutes for a given Captcha image |
|---|
| 18 | TIMEOUT=15 |
|---|
| 19 | |
|---|
| 20 | CAPTCHA_WIDTH=128 |
|---|
| 21 | |
|---|
| 22 | CAPTCHA_HEIGHT=48 |
|---|