]> mj.ucw.cz Git - subauth.git/blob - etc/subauthd
Debian: Install default configuration with comments
[subauth.git] / etc / subauthd
1 SubauthD {
2         # Path to local socket over which clients communicate with the daemon
3         SocketPath      @INSTALL_RUN_DIR@/subauthd.socket
4
5         # Path to database of users and accounts
6         Database        @INSTALL_STATE_DIR@/subauthd.db
7
8         # An optional path to a key for signing temporary tokens.
9         # If it is defined, temporary tokens survive daemon restart. Otherwise,
10         # the daemon creates a new key on every startup.
11         TempKeyFile     @INSTALL_STATE_DIR@/subauthd-temp-key
12
13         # Maximum number of simultaneous client connections
14         MaxConnections  1000
15
16         # Authentication zones: each zone contains accounts for local users
17         # (at most one per user), zones are completely independent.
18         Zone {
19                 # Name of the zone
20                 Name            mail
21
22                 # One-line description
23                 Description     E-mail
24
25                 # Allow automatic creation of accounts: when a user tries to create
26                 # a password/token in a zone where he has no account, the account is
27                 # created. If turned off, all accounts must be created explicitly
28                 # by the super-user.
29                 AutoCreateAcct  1
30
31                 # Allow users to set a password
32                 AllowPasswd     1
33
34                 # Allow users to create a token, set maximum number of tokens per user
35                 AllowTokens     16
36
37                 # Allow users to create a temporary token, set maximum lifetime of such token
38                 MaxTempValidity 3600
39         }
40 }