This file looks large and may slow your browser down if we attempt
to syntax highlight it, so we are showing it without any
pretty colors.
Highlight
it anyway.
| 1 |
/* |
| 2 |
* tunable.h -- values that a site might want to change |
| 3 |
* |
| 4 |
* For license terms, see the file COPYING in this directory. |
| 5 |
*/ |
| 6 |
|
| 7 |
/* umask to use when daemon creates files */ |
| 8 |
#define DEF_UMASK 022 |
| 9 |
|
| 10 |
/* default timeout period in seconds if server connection dies */ |
| 11 |
#define CLIENT_TIMEOUT 300 |
| 12 |
|
| 13 |
/* maximum consecutive timeouts to accept */ |
| 14 |
#define MAX_TIMEOUTS 20 |
| 15 |
|
| 16 |
/* maximum consecutive lock-busy errors to accept */ |
| 17 |
#define MAX_LOCKOUTS 5 |
| 18 |
|
| 19 |
/* maximum consecutive authentication failures to accept */ |
| 20 |
#define MAX_AUTHFAILS 10 |
| 21 |
|
| 22 |
/* default skipped message warning interval in seconds */ |
| 23 |
#define WARNING_INTERVAL 3600 |
| 24 |
|
| 25 |
/* maximum transient errors to accept */ |
| 26 |
#define MAX_TRANSIENT_ERRORS 20 |