1 | # PyKota sample configuration file |
---|
2 | # |
---|
3 | # Copy this file in cups' configuration directory |
---|
4 | # usually /etc/cups under the name pykota.conf |
---|
5 | # |
---|
6 | # PyKota - Print Quotas for CUPS |
---|
7 | # |
---|
8 | # (c) 2003 Jerome Alet <alet@librelogiciel.com> |
---|
9 | # You're welcome to redistribute this software under the |
---|
10 | # terms of the GNU General Public Licence version 2.0 |
---|
11 | # or, at your option, any higher version. |
---|
12 | # |
---|
13 | # You can read the complete GNU GPL in the file COPYING |
---|
14 | # which should come along with this software, or visit |
---|
15 | # the Free Software Foundation's WEB site http://www.fsf.org |
---|
16 | # |
---|
17 | # $Id$ |
---|
18 | # |
---|
19 | |
---|
20 | [global] |
---|
21 | # Storage backend for quotas |
---|
22 | # only PostgreSQL is supported |
---|
23 | # Ldap, MySQL, Berkeley are planned |
---|
24 | storagebackend: postgresql |
---|
25 | storageserver: localhost |
---|
26 | storagename: pykota |
---|
27 | storageadmin: pykotaadmin |
---|
28 | storageuser: pykotauser |
---|
29 | # storageadminpw: Comment out if unused, or set to Quota Storage admin password |
---|
30 | # storageuserpw: Comment out if unused, or set to Quota Storage user password |
---|
31 | |
---|
32 | # Where to log ? |
---|
33 | # supported values : stderr, system (system means syslog, but don't use 'syslog' here) |
---|
34 | logger: system |
---|
35 | |
---|
36 | # Mail server to use to warn users |
---|
37 | smtpserver: localhost |
---|
38 | |
---|
39 | # Accounting method |
---|
40 | # Only LAZY is currently supported, see documentation |
---|
41 | method: lazy |
---|
42 | |
---|
43 | # Print Quota administrator |
---|
44 | # These values can be set either globally or per printer or both. |
---|
45 | # If both are defined, the printer option has priority. |
---|
46 | admin: Jerome Alet |
---|
47 | adminmail: alet@librelogiciel.com |
---|
48 | |
---|
49 | # |
---|
50 | # Grace delay in days |
---|
51 | # This value can be set either globally or per printer or both. |
---|
52 | # If both are defined, the printer option has priority. |
---|
53 | gracedelay: 7 |
---|
54 | |
---|
55 | # one section per printer, or no other section at all if all options are defined globally |
---|
56 | [lp] |
---|
57 | |
---|
58 | # How to query the lp printer for its page counter |
---|
59 | # Only snmp(community, oid) and external(command) are supported |
---|
60 | # e.g. : |
---|
61 | # requester: external(snmpget -c public -Ov %(printer)s 43.10.2.1.4.1.1 | cut -f 2,2 -d " ") |
---|
62 | # and : |
---|
63 | # requester: snmp(public, 43.10.2.1.4.1.1) |
---|
64 | # are equivalent |
---|
65 | # This value can be set either globally or per printer or both. |
---|
66 | # If both are defined, the printer option has priority. |
---|
67 | requester: external(snmpget -c public -Ov %(printer)s 43.10.2.1.4.1.1 | cut -f 2,2 -d " ") |
---|
68 | |
---|
69 | # Default policy for inexistant users (e.g. root) |
---|
70 | # either allow or deny |
---|
71 | # This value can be set either globally or per printer or both. |
---|
72 | # If both are defined, the printer option has priority. |
---|
73 | policy: allow |
---|