]> mj.ucw.cz Git - subauth.git/blob - etc/subauthd
Server: Maximum packet size is now configurable
[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         # Maximum packet size (default: 16k)
17         MaxPacketSize   16k
18
19 #ifndef CONFIG_LOCAL
20         # Log to a given stream (configured below)
21         LogStream       syslog
22 #endif
23
24         # Authentication zones: each zone contains accounts for local users
25         # (at most one per user), zones are completely independent.
26         Zone {
27                 # Name of the zone
28                 Name            mail
29
30                 # One-line description
31                 Description     E-mail
32
33                 # Allow automatic creation of accounts: when a user tries to create
34                 # a password/token in a zone where he has no account, the account is
35                 # created. If turned off, all accounts must be created explicitly
36                 # by the super-user.
37                 AutoCreateAcct  1
38
39                 # Allow users to set a password
40                 AllowPasswd     1
41
42                 # Allow users to create a token, set maximum number of tokens per user
43                 AllowTokens     16
44
45                 # Allow users to create a temporary token, set maximum lifetime of such token
46                 MaxTempValidity 3600
47         }
48 }
49 #ifndef CONFIG_LOCAL
50
51 # Logging rules (see LibUCW documentation for full explanation)
52
53 Logging {
54         Stream {
55                 Name            syslog
56                 SyslogFacility  auth
57                 SyslogPID       0
58                 Levels:remove   debug
59         }
60 }
61 #endif