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

Revision 873, 3.8 kB (checked in by jalet, 21 years ago)

GPL paragraphs were incorrectly (from memory) copied into the sources.
Two README files were added.
Upgrade script for PostgreSQL pre 1.01 schema was added.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[695]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>
[873]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.
[695]13#
[873]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.
[695]22#
23# $Id$
24#
25
26[global]
27# Storage backend for quotas
28# only PostgreSQL is supported
29# Ldap, MySQL, Berkeley are planned
30storagebackend: postgresql
[859]31
32# Quota Storage Server hostname (and port)
33# e.g. db.mydomain.com:5432
[695]34storageserver: localhost
[859]35
36#
37# name of the Quota Storage Database
[695]38storagename: pykota
[859]39
40# Quota Storage administrator's and normal user's names and passwords
[695]41storageadmin: pykotaadmin
42storageuser: pykotauser
[806]43# storageadminpw: Comment out if unused, or set to Quota Storage admin password
44# storageuserpw: Comment out if unused, or set to Quota Storage user password
[695]45
46# Where to log ?
[707]47# supported values : stderr, system (system means syslog, but don't use 'syslog' here)
[853]48# if the value is not set then the default SYSTEM applies.
[782]49logger: system
[695]50
51# Mail server to use to warn users
[853]52# If the value is not set then localhost is used.
[695]53smtpserver: localhost
[806]54
[695]55# Accounting method
56# Only LAZY is currently supported, see documentation
57method: lazy
[806]58
59# Print Quota administrator
60# These values can be set either globally or per printer or both.
61# If both are defined, the printer option has priority.
[853]62# If these values are not set, the default admin root
63# and the default adminmail root@localhost are used.
[806]64admin: Jerome Alet
65adminmail: alet@librelogiciel.com
66
[695]67#
[852]68# Who should we send an email to in case a quota is reached ?
69# possible values are : DevNull, User, Admin, Both
70# The Both value means that the User and the Admin will receive
71# an email message.
72# The DevNull value means no email message will be sent.
73# This value can be set either globally or per printer or both.
74# If both are defined, the printer option has priority.
[853]75# If the value is not set, then the default BOTH applies.
[852]76mailto: both
77
78#
[695]79# Grace delay in days
[806]80# This value can be set either globally or per printer or both.
81# If both are defined, the printer option has priority.
[853]82# If the value is not set then the default seven (7) days applies.
[695]83gracedelay: 7
84
[853]85# one section per printer, or no other section at all if all options
86# are defined globally
[695]87[lp]
[806]88
[695]89# How to query the lp printer for its page counter
[780]90# Only snmp(community, oid) and external(command) are supported
91# e.g. :
[794]92# requester: external(snmpget -c public -Ov %(printer)s 43.10.2.1.4.1.1 | cut -f 2,2 -d " ")
[780]93# and :
[783]94# requester: snmp(public, 43.10.2.1.4.1.1)
[794]95# are equivalent
[806]96# This value can be set either globally or per printer or both.
97# If both are defined, the printer option has priority.
[830]98#
99# NB : The SNMP oid 43.10.2.1.4.1.1 works on HP Laserjet Printers, but it may
100#      be different with other brands, refer to your printer's documentation
101#      for details.
[787]102requester: external(snmpget -c public -Ov %(printer)s 43.10.2.1.4.1.1 | cut -f 2,2 -d " ")
[806]103
[695]104# Default policy for inexistant users (e.g. root)
[713]105# either allow or deny
[806]106# This value can be set either globally or per printer or both.
107# If both are defined, the printer option has priority.
[853]108# If the value is not set then the default policy ALLOW applies.
[713]109policy: allow
Note: See TracBrowser for help on using the browser.