root / pykota / trunk / README @ 1298

Revision 1298, 15.6 kB (checked in by jalet, 20 years ago)

Note wrt l10n

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[695]1# $Id$
2
[952]3PyKota - Print Quota for CUPS and LPRng
[695]4
[1257]5(c) 2003-2004 Jerome Alet <alet@librelogiciel.com>
[873]6This program is free software; you can redistribute it and/or modify
7it under the terms of the GNU General Public License as published by
8the Free Software Foundation; either version 2 of the License, or
9(at your option) any later version.
[695]10
[873]11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14GNU General Public License for more details.
[695]15
[873]16You should have received a copy of the GNU General Public License
17along with this program; if not, write to the Free Software
18Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
19
[761]20====================================================================
[695]21
[1052]22READ SPECIAL LICENSING AND REDISTRIBUTION TERMS IN THE FILE 'LICENSE'
[761]23
24====================================================================
25
[1154]26PyKota features :
27-----------------
[695]28
[1154]29    Operating systems :
30   
31        - Any Unix-like system as print server.
32           
33        - Any operating system as client.
34           
35    Printing systems :
36   
[1283]37        - Supports both CUPS and LPRng as the printing system.
[1154]38           
39    Databases :
40   
41        - Supports PostgreSQL as the Quota Storage backend.
[1283]42          Complete database creation script in SQL is included.
[1043]43       
[1154]44        - Supports OpenLDAP as the Quota Storage backend.
45          Complete LDAP schema and sample tree are included.
[1160]46          Plugging PyKota into your existing LDAP infrastructure
47          is really easy thanks to PyKota's great configurability.
48           
[1154]49    Printers :       
50   
51        - Supports any printer which can report its internal
52          page counter.
53         
54        - Supports any other printer via GhostScript.
[1161]55          Depending on the printer some configuration may
56          be needed.
[739]57       
[1154]58        - Can ask printers for their internal page counter
59          via SNMP, Netatalk, or any other mean of your
60          choice. This is completely configurable.
61         
[1160]62        - External accounting methods are configurable.
[1154]63           
64    Quota systems :       
65   
[1260]66        - Supports printers and printers groups quotas.
[739]67       
[1260]68        - Supports users and users groups quotas.
69       
[1154]70        - Supports page quotas.
71          Page quotas can be set differently on a per printer
72          and per user/group basis.
[739]73       
[1154]74        - Supports account balance quotas in any currency.
75          Account balance quotas can be set on a per user
76          basis. The account balance is shared amongst
77          all printers.
[980]78         
[1154]79        - Page quota and account balance can be set/reset
80          independantly.
81         
82        - Limiting factor, page quota or account balance, 
83          can be set on a per user or per group basis.
84         
85        - Price per page and per job can be set differently 
86          on any printer.
[794]87       
[1154]88        - Low level of page quota or account balance are
89          configurable.
[739]90         
[1154]91        - Both soft and hard limit with configurable grace delay 
92          can be set for page quota.
[900]93         
[1154]94        - Possibility to disable quota enforcement for any user
95          or group, while still keeping page accounting.
96             
97    Administration :       
98   
99        - Powerful administration tools can be used to
100          automate setting or resetting of quotas or
101          account balances at specific intervals.
[925]102         
[1154]103        - Administration tools can modify several users, 
104          groups, or printers at once.
[925]105         
[1154]106        - Account balances can be set, incremented, or 
107          decremented.
[1153]108         
[1273]109        - Both printers and users can be automatically added on
110          first print in a completely configurable way.
[1154]111         
112        - Quota report generator available either from the 
113          command line or in any web browser.
114          The web-based quota report generator can be
115          user/password protected.
116         
117        - Print quote generator can tell users how much 
118          a print job will cost them in advance.
119         
120        - Policy with regard to unregistered users can   
121          be configured for each printer to either deny
122          printing, allow printing, or delegate the
123          decision to any external tool.
124         
125        - Warning and error messages can be automatically 
126          sent via email to the administrator, the user,
127          both, or none.
128         
129        - Warning and error messages' content is completely
130          configurable.
131         
132        - Configuration can be changed without needing to 
133          restart the printing system.
[739]134       
[1154]135        - Complete print job history is kept. This can be
136          disabled if needed.
137         
138        - Automated low quota or balance remainder can be
139          scheduled regularly or launched manually.
140         
[1155]141    User Interface :         
142   
[1154]143        - All the command line tools accept the -h | --help
144          command line option which prints all the available
145          options and show usage examples.
[1155]146         
147        - Completely internationalized. Actually supports the 
[1298]148          English, French, Spanish and Portuguese languages.
149          More to come.
[1154]150
151====================================================================
152       
[739]153Planned features are described in the TODO file.
154
[980]155Actually three (or an infinity of) page accounting methods are
156implemented :
[695]157
[980]158  - The 'querying' method consists in querying the printer (via SNMP
[1181]159    or Netatalk or any other method of your choice) for its total pages
[1186]160    counter.
[980]161   
[1186]162    With CUPS, this is done both at the beginning and at the end of a
163    print job. The counters difference is then immediately used to
164    decrease the user's account balance or increase his quota usage.
165   
166    With LPRng, this is done just before the beginning of a job, and used
167    this to modify the *preceding* user's quota. So you're always late
168    of one print job, but this is generally ok, especially because a
169    check is also done to see if the current user is allowed or not to
170    print.
171   
[980]172  - The 'external' method consists in delegating the computation of the
173    job's size in number of pages to any external command of your choice.
174    The command can read the job's data from its standard input and MUST
[1186]175    output the job's size on its standard output. Changes to the user
176    account are reported immediately, both with CUPS and LPRng.
[980]177   
178  - The 'stupid' method consists in counting the 'showpage' PostSript 
179    statements in the job. THIS IS UNRELIABLE, but can serve as an
180    example if you plan to write your own accounting method for
[1186]181    integration into PyKota. It basically works like the 'external'
182    method, but does the computation internally.
[724]183 
[919]184PyKota is known to work fine with HP Laserjet 2100 and 2200, and
[980]185Apple LaserWriter 16/600 PS, both with CUPS and LPRng, under
186Debian GNU/Linux (Sarge and Sid) operating systems.
[724]187
[980]188I'm interested in receiving success or failure reports with other
189brands or models of printers, as well as with other operating
190systems.
[859]191
[695]192============================================================
193
194INSTALLATION:
195=============
196
[1186]197NB :
198====
[887]199
[1034]200  Users of MacOS-X may find the following tutorial useful :
201
202      http://ell-tech.com/pages/pykota.php
203
[714]204Prerequisite :
205--------------
206   
207  You need to have the following tools installed on the CUPS Server :
208 
[952]209    - CUPS or LPRng
[809]210    - Python v2.1 or above
[714]211    - eGenix' mxDateTime Python extension
[919]212    - SNMP tools (specifically the snmpget command) if you plan to
213      request your printer's lifetime page counter via SNMP.
214    - Netatalk (specifically the pap command) if you plan to
215      request your printer's lifetime page counter via AppleTalk.
[1043]216    - PostgreSQL's PygreSQL Python extension and the PostgreSQL client
217      libraries if you plan to use PostgreSQL as the Quota Storage
218      backend.
219 or     
220    - python-ldap Python module and the OpenLDAP client libraries 
221      if you plan to use OpenLDAP as the Quota Storage backend.
[714]222   
[1186]223  You may also benefit from having the following tools installed to
224  deal with some printers :
225 
226    - npadmin
227    - netcat
228    - ghostscript
229   
[714]230  You need to have the following tools installed on the Quota Storage 
231  Server :
232 
233    - PostgreSQL
234   
[1043]235  or 
236 
237    - OpenLDAP
238   
[1086]239NB :   
240
241  PygreSQL must be linked with the PostgreSQL client libraries on
242  the Print Server. The PostgreSQL client libraries' version must
243  match the PostgreSQL version used on the Quota Storage Server.
[714]244 
[1043]245or 
246
[1086]247  python-ldap must be linked with the OpenLDAP client libraries on the
248  Print Server. The OpenLDAP client libraries' version must match the
249  OpenLDAP version used on the Quota Storage Server.
[1043]250 
[714]251  This list of prerequisite software may change in the future, when
252  PyKota will support more functionnalities you will be given
253  alternatives.
254 
[952]255  Of course the Print Server and the Quota Storage Server can be the
[851]256  very same machine if you've got a tiny network, or you can have
[952]257  multiple Print Servers all storing their quotas on the same Quota
[851]258  Storage Server if you've got a bigger network.
259 
[714]260Then :   
261------
262 
[724]263Download the latest PyKota version from the CVS tree on :
[695]264
[725]265    http://savannah.nongnu.org/projects/pykota
[695]266
[714]267Just type :
[695]268
[725]269    python setup.py install
[695]270
271You may need to be logged in with sufficient privileges (e.g. root)
272
[878]273The installation script will now automatically check if some software
274is missing and ask you if you still want to proceed with the
275installation or abort it completely.
276
[695]277Go to the initscripts subdirectory of PyKota's sources, and choose
278the appropriate storage backend for your configuration. Read
279the associated README file and execute the initialization script
[878]280to create an empty PyKota Storage. Upgrade scripts may be
281provided as well.
[695]282
[1186]283Copy the conf/pykota.conf.sample and  conf/pykotadmin.conf.sample
[1107]284sample configuration files to /etc/pykota/pykota.conf and
[1186]285/etc/pykota/pykotadmin.conf. The installation script tries to do
286this for you if needed and you agreed to this action. You need to
287adapt these files to your own needs. Especially you have to create
288sections named after your own printers, and change the
289administrator's email address which by default is root@localhost.
290Read and try to understand these two very well commented files,
291so that you'll encounter less problems later.
[1198]292
293Also be sure to double check that commands that query printers
[1186]294for their internal page counter work from the command line
295before using them in PyKota's configuration.
[695]296
[1186]297The rest of the installation depends on your printing system :
298
[1185]299  - CUPS Printing System :
[952]300 
[1185]301    Once and for all :
[952]302   
[1185]303        Create a symbolic link to the cupspykota backend
304        in CUPS's backend directory :
305       
306          $ cd /usr/lib/cups/backend
307          $ ln -s /usr/bin/cupspykota cupspykota
308         
309        Restart CUPS so that the new backend can be detected.
310       
311          $ /etc/init.d/cupsys restart
312         
[1206]313    For dumb printers :
314   
315        The FAQ contains both the PyKota's definition of a 'dumb'
316        printer, and how to deal with them.
317   
[1185]318    For new printers :
[952]319   
[1185]320        Go to CUPS management interface (http://localhost:631)
321        and choose the appropriate PyKota managed device depending
322        on the type of printer you use. For example, if your
323        printer is waiting on :
324       
325            socket://myprinter.domain.com:9100
326           
327        Then choose :   
328       
329            cupspykota:socket://myprinter.domain.com:9100
330           
331        Configure your printer as usual.   
332       
[1186]333        Now double check /etc/pykota/pykota.conf
334        This file should contain a section named after the
335        printer you've just added.
336       
[1185]337        That's all.
[952]338   
[1185]339    For existing printers :
340   
[1186]341        If you had already installed a version of PyKota earlier
342        than 1.16alpha7, then remove the *cupsFilter lines in your
343        PPD files for each printer already managed printers. Each
344        line to remove is of the form :
[1185]345       
346          *cupsFilter: "application/vnd.cups-postscript 0 /usr/bin/pykota"
347       
348        Don't touch anything else, especially any other *cupsFilter line.
[1186]349        Then save each of these files.
[1185]350       
351        Then, the easiest is to directly modify the DeviceURI lines
352        in /etc/cups/printers.conf, you just have to put
353        'cupspykota:' in front of what is already on these lines.
354        For example, replace :
355   
356            DeviceURI socket://myprinter.domain.com:9100
357       
358        with :   
359   
360            DeviceURI cupspykota:socket://myprinter.domain.com:9100
361       
362        Save the file and restart CUPS.
[695]363
[1185]364  - LPRng Printing System :
[952]365 
366    Modify the /etc/printcap file to add two lines identical to these ones :
367   
368    :achk=true
369    :as=|/usr/bin/pykota
370   
371    For each printer on which you want to use print accounting.
[1186]372   
373    And then save the file and restart LPRng :
374   
375        $ /etc/init.d/lprng restart
376       
377Now you can begin to populate the PyKota's database with printers,
378users and groups :
[952]379 
[716]380Add printers and users to the quota system and set their quota values :
[695]381
[1086]382    $ edpykota --add -P hp2100 -S 40 -H 50 user1 ... userN
[724]383       
[725]384    launching edpykota without any argument or with the --help
385    command line option will show you all the possibilities.
[1086]386   
387    by default, each user is limited by "quota", this means that on
388    each printer he can have a different soft and hard limit.
389    You may want to limit the user by his account balance value,
[1107]390    in which case, the print quota is shared between all printers
[1086]391    instead of being different. To do this, use the following :
392   
393    $ edpykota --add -P hp2100 --limitby balance --balance 10 user1 ... userN
394   
395    This will put 10 $ (or Euros, PyKota doesn't care) on each user's account
396    balance, and tell PyKota to limit them by their account balance value.
397    Whenever they print on any printer, their account balance value is
398    decreased by an amount which depends on the particular price per page
399    and per job that you may have defined on the printer with edpykota's
400    --charge command line option.
[1107]401    Soft and Hard limits are not used if "--limitby balance" is used,
402    but you can define a "poorman"'s threshold in /etc/pykota/pykota.conf
403    to obtain a similar result (warning message when quota is low).
[695]404
[990]405Restart CUPS or LPRng, for example under Debian GNU/Linux systems :         
[695]406
[725]407    $ /etc/init.d/cupsys restart
[990]408   
409  or :
410 
411    $ /etc/init.d/lprng restart
[695]412       
413Your users now should be able to print but not exceed their
414printing quota.
415
[1149]416To see printer quota usage, you can use :
[794]417
418    $ repykota --printer lp
419   
420or :
421
422    $ repykota
423   
424    which will print quota usage for all users on all printers,
[1107]425    along with totals, if you are the root user. If you are
426    a regular user, only your own quota report will be produced.
[794]427   
[1107]428Quota reports are also available remotely by using the CGI script
429printquota.cgi provided in the cgi-bin/ subdirectory.
[990]430
[980]431For different security concerns, please give a look at the SECURITY
432file which is part of this software.
[741]433           
[695]434============================================================
435
[958]436Mailing list :
437--------------
438
439  A mailing list is dedicated to Pykota, you can subscribe to it
440  or consult its archives at :
441 
442    http://cgi.librelogiciel.com/mailman/listinfo/pykota
443   
[1181]444IRC :   
445-----
446
447  You can also chat with us :
448 
449        /server irc.freenode.net
450        /join #pykota
451   
[958]452============================================================
453   
[1107]454Please e-mail bugs to the mailing list at : pykota@librelogiciel.com
455or to the main author at : alet@librelogiciel.com (Jerome Alet)
Note: See TracBrowser for help on using the browser.