root / pykota / trunk / conf / pykota.conf.sample @ 830

Revision 830, 2.5 kB (checked in by jalet, 21 years ago)

Explanation about the SNMP oid which is probably HP specific.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
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
24storagebackend: postgresql
25storageserver: localhost
26storagename: pykota
27storageadmin: pykotaadmin
28storageuser: 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)
34logger: system
35
36# Mail server to use to warn users
37smtpserver: localhost
38
39# Accounting method
40# Only LAZY is currently supported, see documentation
41method: 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.
46admin: Jerome Alet
47adminmail: 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.
53gracedelay: 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#
68# NB : The SNMP oid 43.10.2.1.4.1.1 works on HP Laserjet Printers, but it may
69#      be different with other brands, refer to your printer's documentation
70#      for details.
71requester: external(snmpget -c public -Ov %(printer)s 43.10.2.1.4.1.1 | cut -f 2,2 -d " ")
72
73# Default policy for inexistant users (e.g. root)
74# either allow or deny
75# This value can be set either globally or per printer or both.
76# If both are defined, the printer option has priority.
77policy: allow
Note: See TracBrowser for help on using the browser.