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

Revision 1021, 6.8 kB (checked in by jalet, 21 years ago)

Deletion of the second user which is not needed anymore.
Added a debug configuration field in /etc/pykota.conf
All queries can now be sent to the logger in debug mode, this will
greatly help improve performance when time for this will come.

  • 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 and LPRng
7#
8# (c) 2003 Jerome Alet <alet@librelogiciel.com>
9# This program is free software; you can redistribute it and/or modify
10# it under the terms of the GNU General Public License as published by
11# the Free Software Foundation; either version 2 of the License, or
12# (at your option) any later version.
13#
14# This program is distributed in the hope that it will be useful,
15# but WITHOUT ANY WARRANTY; without even the implied warranty of
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17# GNU General Public License for more details.
18#
19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software
21# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
22#
23# $Id$
24#
25
26[global]
27# Storage backend for quotas
28# only PGStorage (PostgreSQL) is supported
29# Ldap, MySQL, Berkeley are planned
30
31# the 'postgresql' value is deprecated, use 'pgstorage' instead.
32storagebackend: pgstorage
33
34# Quota Storage Server hostname (and optional port)
35# e.g. db.mydomain.com:5432
36storageserver: localhost
37
38#
39# name of the Quota Storage Database
40storagename: pykota
41
42# Quota Storage administrator's and normal user's names and passwords
43storageadmin: pykotaadmin
44# storageadminpw: Comment out if unused, or set to Quota Storage admin password
45
46# NB : storageuser and storageuserpw are not used anymore
47
48# LDAP example :
49#storagebackend: ldapstorage
50#storageserver: ldap://ldap.librelogiciel.com:389
51#storagename: dc=librelogiciel,dc=com
52#storageadmin: cn=admin,dc=librelogiciel,dc=com
53#storageuser: cn=admin,dc=librelogiciel,dc=com
54#storageadminpw: abc.123
55#storageuserpw: xyz.345
56
57# Where to log ?
58# supported values : stderr, system (system means syslog, but don't use 'syslog' here)
59# if the value is not set then the default SYSTEM applies.
60logger: system
61
62# Enable debugging ? Put YES instead here.
63debug : No
64
65# Mail server to use to warn users
66# If the value is not set then localhost is used.
67smtpserver: localhost
68
69# What is the accounting backend to use
70#
71# supported values :
72#
73#    - querying : asks the printer for its lifetime page counter
74#                 via either SNMP, AppleTalk, or any external
75#                 command. This method is the method used by
76#                 default in PyKota since its beginning.
77#
78#    - external : delegates the job's size computation to any
79#                 external command of your choice. A stupid and
80#                 completely unreliable example, but which
81#                 shows what this command may be is :
82#
83#                   accounter: external(/bin/grep -c showpage)
84#
85#                 Another one, which should work with all DSC
86#                 compliant Postscript files :
87#
88#                   accounter: external(/bin/grep -c "%%Page:")
89#
90#    - stupid : counts the occurences of the 'showpage' postscript
91#               statement in the document to be printed.
92#               THIS IS NOT RELIABLE. This is just to serve as
93#               an example on how to implement your own accounting
94#               method.
95#
96# This value can be set either globally or on a per printer basis
97# If both are defined, the printer option has priority.
98# if not set it defaults to 'querying'.
99#
100# A script which seems to be accurate, copy it from the
101# untested/postscript directory to another place.
102# accounter: external(/usr/local/bin/pagecount.sh)
103# WARNING : it may not work when multiple copies are asked.
104#           this breaks ghostscript, I don't know why yet.
105#
106# default value
107accounter: querying
108
109# Print Quota administrator
110# These values can be set either globally or per printer or both.
111# If both are defined, the printer option has priority.
112# If these values are not set, the default admin root
113# and the default adminmail root@localhost are used.
114admin: Jerome Alet
115adminmail: alet@librelogiciel.com
116
117#
118# Who should we send an email to in case a quota is reached ?
119# possible values are : DevNull, User, Admin, Both
120# The Both value means that the User and the Admin will receive
121# an email message.
122# The DevNull value means no email message will be sent.
123# This value can be set either globally or per printer or both.
124# If both are defined, the printer option has priority.
125# If the value is not set, then the default BOTH applies.
126mailto: both
127
128#
129# Grace delay in days
130# This value can be set either globally or per printer or both.
131# If both are defined, the printer option has priority.
132# If the value is not set then the default seven (7) days applies.
133gracedelay: 7
134
135# one section per printer, or no other section at all if all options
136# are defined globally
137[lp]
138
139# How to query the lp printer for its page counter.
140# THIS IS ONLY USED IF YOU HAVE SET 'accounter' TO 'querying'
141# JUST COMMENT IT OUT IF YOU USE ANY OTHER ACCOUNTING METHOD.
142# (it would be ignored anyway)
143#
144# Only snmp(community, oid) and external(command) are supported
145#
146# Example :
147#     requester: external(snmpget -v1 -c public -Ov %(printer)s mib-2.43.10.2.1.4.1.1 | cut -f 2,2 -d " ")
148# and :
149#     requester: snmp(public, mib-2.43.10.2.1.4.1.1)
150# are equivalent
151#
152# Another untested example, using npadmin :
153#     requester: external(npadmin --pagecount %(printer)s)
154#
155# Another example, for AppleTalk printers which works fine :
156# (You may need the pap CUPS backend installed, and copy the
157# pagecount.ps file from untested/netatalk into /etc or any
158# appropriate location)
159#     requester: external(/usr/bin/pap -p "%(printer)s:LaserWriter" /etc/pagecount.ps  2>/dev/null | grep -v status | grep -v Connect | tail -1)
160#
161# This value can be set either globally or per printer or both.
162# If both are defined, the printer option has priority.
163#
164# NB : The SNMP oid mib-2.43.10.2.1.4.1.1 works on HP Laserjet Printers, but it may
165#      be different with other brands, refer to your printer's documentation
166#      for details. Also you may have to specify -v2c or -v3 depending on your
167#      printer's support for different versions of the SNMP specification.
168#
169# WARNING : In any case, when using an external requester, please test the command line outside
170#           of PyKota before. This will save you some headaches in case it doesn't work as expected.
171requester: external(snmpget -v1 -c public -Ov %(printer)s mib-2.43.10.2.1.4.1.1 | cut -f 2,2 -d " ")
172
173# Default policy for inexistant users (e.g. root)
174# either allow or deny
175# This value can be set either globally or per printer or both.
176# If both are defined, the printer option has priority.
177# If the value is not set then the default policy DENY applies.
178# ATTENTION :
179#     Before 1.04 the default value was ALLOW, but unknown users
180#     allowed to print causes accuracy problems : their jobs are
181#     charged to the next person who prints on the same printer.
182policy: deny
Note: See TracBrowser for help on using the browser.