root / pykota / trunk / README @ 2877

Revision 2877, 27.7 kB (checked in by jerome, 18 years ago)

Added support for pysnmp v4.x in addition to v3.4.x

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
RevLine 
[695]1# $Id$
2
[2478]3PyKota - Print Quotas for CUPS and LPRng
[695]4
[2622]5(c) 2003, 2004, 2005, 2006 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
[2303]18Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
[873]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
[2051]29    Free Software :
30   
31        - Licensed under the terms of the GNU General Public License.
32       
33    Commercially Supported :   
34   
35        - Support Contracts are available from http://www.librelogiciel.com/techsupport/
36       
[1154]37    Operating systems :
38   
39        - Any Unix-like system as print server.
40           
41        - Any operating system as client.
42           
43    Printing systems :
44   
[1283]45        - Supports both CUPS and LPRng as the printing system.
[2471]46          NB : LPRng is only supported with versions
[2478]47          of PyKota <= v1.22HotFix1, but support for LPRng
48          may be reintroduced at a later date.
49          This version DOES NOT support LPRng !
[2471]50       
[1154]51    Databases :
52   
[2597]53        - Supports PostgreSQL as the database backend.
54          An SQL script to create the database is included.
[1043]55       
[2597]56        - Supports any LDAP server as the database backend.
[1475]57          Complete LDAP schema and sample empty tree are included.
[1160]58          Plugging PyKota into your existing LDAP infrastructure
59          is really easy thanks to PyKota's great configurability.
[2051]60         
[2597]61        - Supports SQLite as the database backend.
62          An SQL script to create the database is included.
63         
[2638]64        - Supports MySQL as the database backend.
65          An SQL script to create the database is included.
66
[2051]67        - The print jobs history can be stored in any database 
68          of your choice (or in plain text files) if needed.
[2597]69         
70        - Master and slave databases are supported : master 
71          in read+write mode, slave in readonly mode.
72          Master and slave databases can be of different types !
[1160]73           
[1154]74    Printers :       
75   
[1475]76        - Hardware or Software accounting methods are completely
77          configurable.
78         
[1154]79        - Supports any printer which can report its internal
[1475]80          page counter. Can ask printers for their internal
[1561]81          page counter via SNMP, Netatalk, PJL, PS, or any
82          other way.
[1475]83          This is completely configurable.
[1154]84         
[1701]85        - Supports DSC compliant and binary PostScript, PDF, PCL5 (up to),
[2700]86          PCLXL (aka PCL6), ESC/P2, DVI, TIFF, OpenDocument (OpenOffice.org)
87          and Zenographics ZjStream natively (through the direct use of
88          pkpgcounter's code) for software accounting methods. More formats
89          to come.
[2350]90         
91        - Supports any other Page Description Language for which you 
92          have a parser which can be scripted.
[1154]93           
94    Quota systems :       
95   
[1260]96        - Supports printers and printers groups quotas.
[739]97       
[1260]98        - Supports users and users groups quotas.
99       
[1154]100        - Supports page quotas.
101          Page quotas can be set differently on a per printer
102          and per user/group basis.
[739]103       
[1154]104        - Supports account balance quotas in any currency.
105          Account balance quotas can be set on a per user
106          basis. The account balance is shared amongst
[1561]107          all printers. The history of payments (positive
108          or negative credits to an user account) is kept.
[980]109         
[2151]110        - Supports high granularity periodic print quotas : down
111          to one minute intervals if needed.
112       
[1610]113        - Page quotas and account balance can be set/reset
[1154]114          independantly.
115         
[2067]116        - Page quotas can be set on a per user or per group basis
117          for a particular printer.
[1154]118         
119        - Price per page and per job can be set differently 
120          on any printer.
[794]121       
[1154]122        - Low level of page quota or account balance are
123          configurable.
[739]124         
[1154]125        - Both soft and hard limit with configurable grace delay 
126          can be set for page quota.
[900]127         
[2470]128        - Both soft and hard limits can be increased or decreased at will. 
129       
[1154]130        - Possibility to disable quota enforcement for any user
131          or group, while still keeping page accounting.
[1928]132         
[2067]133        - Each user can have an overcharging (or undercharging) factor, 
134          which is applied whenever PyKota computes the cost of a
135          print job.
136         
[2391]137        - Specific pages and credits counters can be defined per billing code,
138          and can be reset independantly of the printing history.
[2470]139         
140        - Supports a passthrough mode for printers, which doesn't modify 
141          users quota when they print.
142         
143        - Supports a maximum number of pages per job, configurable for each 
144          printer.
145         
146        - Each user can be completely forbidden to print, independantly from
147          other users.
148         
149        - A transparent printing mode is supported for users, in which
150          their quota is not modified when they print.
151         
[1154]152    Administration :       
153   
[2470]154        - Almost turn-key solution, with the help of the pkturnkey command
155          line tool for database initialization and initial configuration.
156         
[2067]157        - Powerful delegation of administrative priviledges.
158       
[1154]159        - Powerful administration tools can be used to
160          automate setting or resetting of quotas or
161          account balances at specific intervals.
[925]162         
[1154]163        - Administration tools can modify several users, 
[2051]164          groups, or printers at once with the use of
165          powerful wildcard characters.
[925]166         
[1154]167        - Account balances can be set, incremented, or 
[1580]168          decremented. History of payments is kept.
[1153]169         
[2067]170        - Number of pages used can be set, incremented, or 
171          decremented.
172         
[1273]173        - Both printers and users can be automatically added on
174          first print in a completely configurable way.
[1154]175         
176        - Quota report generator available either from the 
177          command line or in any web browser.
178          The web-based quota report generator can be
179          user/password protected.
180         
181        - Print quote generator can tell users how much 
182          a print job will cost them in advance.
183         
[2688]184        - PDF invoice generator to charge back users.
185         
[1154]186        - Policy with regard to unregistered users can   
187          be configured for each printer to either deny
188          printing, allow printing, or delegate the
189          decision to any external tool.
190         
191        - Warning and error messages can be automatically 
[2051]192          sent via email or via any other mean to the administrator,
193          the user, both, or none.
[1154]194         
195        - Warning and error messages' content is completely
196          configurable.
197         
198        - Configuration can be changed without needing to 
199          restart the printing system.
[739]200       
[1154]201        - Complete print job history is kept. This can be
[2850]202          disabled if needed.         
[1154]203         
204        - Automated low quota or balance remainder can be
205          scheduled regularly or launched manually.
206         
[2067]207        - Starting and Ending personalized dynamic banners can be
208          generated on the fly, and accounted for or not, depending
209          on some configuration settings.
210          Banners can still be enabled even if the print job is denied.
211          NB : Banners are a CUPS only feature for now.
212         
[2349]213        - Duplicate print jobs can be forbidden automatically. The decision
[2351]214          can be left to any script to decide this on a per job basis.
[2067]215         
[2394]216        - Username and billing code can be overwritten at printing time,
217          to allow people to login as guest users and print as authenticated
218          users, for example.
219         
[2849]220        - The pknotify command can now interact with remote users who run 
221          the PyKotIcon application which is distributed separately.
222         
[1744]223        - Powerful data dumper to export datas to other
[1804]224          software (spreadsheets for example). Actually
225          supported formats are :
[1744]226         
[1804]227            - Comma separated values ;
228           
229            - Semicolon separated values ;
230           
231            - Tab separated values ;
232           
233            - XML.
[2048]234           
235            - CUPS' page_log format, to easily interface in
236              real time with third party apps like phpPrintAnalyzer
237              and similar tools.
[1804]238         
[1155]239    User Interface :         
240   
[1154]241        - All the command line tools accept the -h | --help
242          command line option which prints all the available
243          options and show usage examples.
[1155]244         
[2545]245        - Completely internationalized. Actually supports at least partially
246          English, French, Polish, Spanish, Portuguese, Brazilian, Swedish,
[2048]247          Thai, Greek, German, Italian, Norwegian (Bokm�, Turkish
248          and traditional Chinese languages.
[1891]249          More to come.
[2048]250         
[2243]251        - Web enabled print quota monitor, data dumper, and quote
[2153]252          generator.
[2048]253       
[2049]254        - An On Screen Display X-Window print quota monitor is included.
[2048]255       
[2051]256        - An email gateway to allow users to retrieve their print quota
257          information by sending an email message to a dedicated address
258          is included.
259       
[2049]260        - Third party web based management tools are available.
[1154]261
262====================================================================
263       
[739]264Planned features are described in the TODO file.
265
[1507]266Actually two (or an infinity of) page accounting methods are
[980]267implemented :
[695]268
[1475]269  - The 'hardware' method consists in querying the printer (via SNMP
[1181]270    or Netatalk or any other method of your choice) for its total pages
[1186]271    counter.
[1600]272    This is done both at the beginning and at the end of a
[1186]273    print job. The counters difference is then immediately used to
274    decrease the user's account balance or increase his quota usage.
275   
[1475]276  - The 'software' method consists in delegating the computation of the
[980]277    job's size in number of pages to any external command of your choice.
278    The command can read the job's data from its standard input and MUST
[1186]279    output the job's size on its standard output. Changes to the user
[2345]280    account are reported immediately.
[980]281   
[2345]282    PyKota featured an internal software accounting method which handles
283    several Page Description Languages : DSC compliant and binary PostScript,
284    PDF, PCLXL (aka PCL6), PCL3/4/5, ESC/P2, DVI, TIFF, OpenOffice.org Writer
285    and OpenOffice.org Impress. This software is now distributed separately
286    as 'pkpgcounter', and not included anymore in PyKota, so you must now
287    download and install it before running PyKota.
288   
[1600]289PyKota is known to work fine with most laser printers, either with
290software accounting, or with hardware accounting if the printer
291supports this.
[724]292
[695]293============================================================
294
[2001]295SUPPORT CONTRACTS:
296==================
297
298  You can now purchase 8x5x365@NextBusinessDay Technical
[2126]299  Support Contracts from us. The yearly fee is computed with 
300  the following formula :
[2001]301
302  (100.0 * NbPrintServers) + (2.5 * NbPrinters) + (0.04 * NbUsers) EUROS.
303 
[2542]304  This fee includes the VAT, and a free subscription to Official
305  PyKota packages.
[2001]306
307  Please send an email to alet@librelogiciel.com if you're
[2126]308  interested in purchasing such a contract.   
[2001]309
[2126]310  Remember that purchasing a support contract for Free Software like PyKota
311  is a great way to show your appreciation for the work already being done
312  on this project, and will help to improve this software in the future.
313
[2001]314============================================================
315
[695]316INSTALLATION:
317=============
318
[1186]319NB :
320====
[887]321
[2714]322  PyKota's documentation is available as DocBook SGML sources
323  files in the pykota/docs directory. If you obtained an
324  Official package, in the same directory you'll also find
325  the documentation in HTML and PDF formats.
[2543]326 
[2714]327  PyKota's collaborative documentation is available from :
328 
[2543]329    http://www.librelogiciel.com/software/PyKota/WiKota/
330   
[1397]331  You may learn more about PyKota, if it fits your own organization,
332  its internal working, and some potential performance drawbacks and
[2054]333  how to avoid them, in a document created by Ryan Suarez at :
[1397]334 
[2005]335    http://archive.macosxlabs.org/forum/webcrossing_archive/documentation/Pykota_and_CUPS/Pykota_and_CUPS.html
[1034]336
[1651]337  You may also find the following document interesting :
338 
339    http://es.tldp.org/Tutoriales/doc-openldap-samba-cups-python/
340   
341  This document, written in Spanish by Sergio Gonzalez Gonzalez, 
342  describes the integration of PyKota into an OpenLDAP + Samba
343  + CUPS installation. Even for people who can't read spanish
344  this document is really interesting, and contains lots of
345  screenshots.
346 
[1951]347  Finally, SuSe users may find the following document to best describe
348  how to install PyKota on their favorite distribution. It's a Spanish
[2714]349  document written by Dennis Romero, and is mostly outdated now :
[1951]350 
351    http://www.cvr.espol.edu.ec/people/dennis/Pykota1.19-SuSE9.1.pdf
352 
353 
[714]354Prerequisite :
355--------------
356   
[2714]357  See :
358 
359    http://www.librelogiciel.com/software/PyKota/WiKota/Dependencies
360   
361  for an up-to-date list, or see below (maybe not up-to-date) :
362 
[714]363  You need to have the following tools installed on the CUPS Server :
364 
[2478]365    - CUPS (http://www.cups.org)
[2784]366    - Python v2.2 or higher (http://www.python.org)
[1886]367    - eGenix' mxDateTime Python extension (http://www.egenix.com)
[2345]368    - The pkpgcounter command line tool, version 1.56 or higher. This
369      tool is now mandatory for PyKota to work.
370      (http://www.librelogiciel.com/software/)
[1771]371    - The JAXML Python module to be able to dump datas in the XML format.
[1886]372      (http://www.librelogiciel.com/software/)
[2784]373    - The Python-PAM module if you need the pknotify command to be able 
374      to check usernames and passwords.
[1771]375    - The Python-SNMP module to query printers for their page counter.
[1965]376      (http://pysnmp.sourceforge.net).
[2877]377      IMPORTANT : version 3.4.2 or higher is REQUIRED.
378      Versions 2.x won't work. Versions 4.x now work (tested with v4.1.5a).
[1771]379    - The Python-OSD module to use the graphical print quota reminder.
[2189]380      (http://repose.cx/pyosd/)
[1771]381    - SNMP tools (specifically the snmpget command) if you prefer to
382      use your own script to request query printers.
[2189]383      (http://www.net-snmp.org)
[919]384    - Netatalk (specifically the pap command) if you plan to
385      request your printer's lifetime page counter via AppleTalk.
[1886]386      (http://netatalk.sourceforge.net)
[1927]387    - The ReportLab Python module (http://www.reportlab.org) if you want 
388      to have PyKota generate nice banners for you.
389    - The Python Imaging Library (aka PIL) module
390      (http://www.pythonware.com/downloads) if you want to have PyKota
391      generate nice banners for you.
[1043]392    - PostgreSQL's PygreSQL Python extension and the PostgreSQL client
[2597]393      libraries if you plan to use PostgreSQL as the database backend.
[1886]394      (http://www.postgresql.org and http://www.pygreql.org)
[1043]395 or     
396    - python-ldap Python module and the OpenLDAP client libraries 
[2597]397      if you plan to use an LDAP server as the database backend.
[1886]398      (http://www.openldap.org and http://python-ldap.sourceforge.net)
[2597]399 or
400    - SQLite v3.2.7 and the SQLite libraries if you plan to use SQLite
401      as the database backend (http://www.sqlite.org). You also need the
402      PySQLite module v2.0.5 or higher (http://www.pysqlite.org)
[2638]403 or
[2714]404    - The MySQL-python bindings.
[2638]405      IMPORTANT: If you are using MySQL 4.1, then MySQL-python must be
406      version 1.2 or greater. Version 1.0 does not work correctly with 4.1.
[2597]407     
[714]408   
[1771]409  On Intel i386 architecture, and for performance reasons, it is
410  strongly suggested that you install the Python accelerator Psyco,
411  available at :
[1570]412 
413      http://psyco.sourceforge.net
414     
[1571]415  Under Debian :   
416 
417      $ apt-get install python-psyco
418     
419  Other architectures may be supported as well in the future, check   
[1600]420  this on Psyco's website.
[1571]421 
[1578]422  Installing Psyco is not mandatory, but it will speedup PCL5 parsing
[1570]423  by almost 3 times. PostScript and PDF parsing can also benefit,
424  but in an almost unnoticeable manner since this part of the code
[1575]425  is already optimal. For PCL5 this is a completely different matter,
[1570]426  and if you install Psyco you will never regret it !
[1600]427  Same remark applies for PCL6 (aka PCLXL) : the parser is completely
428  different, but the performance gain with Psyco is impressive.
[1570]429 
[1186]430  You may also benefit from having the following tools installed to
431  deal with some printers :
432 
433    - npadmin
434    - netcat
435    - ghostscript
436   
[2597]437  You need to have the following tools installed on the database
438  server :
[714]439 
[1886]440    - PostgreSQL (http://www.postgresql.org)
[714]441   
[1043]442  or 
443 
[1886]444    - OpenLDAP, or any other LDAP server (http://www.openldap.org)
[1043]445   
[2597]446  or   
447 
448    - SQLite, v3.2.7 or higher (http://www.sqlite.org).
449      Beware : with SQLite the database server and the print
450      servers MUST be the very same machine.
[2714]451     
452  or     
[714]453 
[2870]454    - MySQL 4.1 or higher.
[2714]455   
[714]456  This list of prerequisite software may change in the future, when
457  PyKota will support more functionnalities you will be given
458  alternatives.
459 
[2597]460  Of course the Print Server and the database server can be the
[851]461  very same machine if you've got a tiny network, or you can have
[2597]462  multiple Print Servers all storing their quotas on the same database
463  server if you've got a bigger network. (NB : with SQLite, the database
464  can't be shared between several print servers)
[851]465 
[1886]466Hint : 
467------
468
469  - The Debian GNU/Linux distribution is to our knowledge the
470    easiest distribution to install PyKota on, because all
471    of PyKota dependencies are already included, excepted
472    for the PySNMP (http://pysnmp.sourceforge.net) module
[2345]473    and the pkpgcounter utility which for now have to be downloaded
474    and installed separately.
[1886]475
[714]476Then :   
477------
478 
[2135]479Download the latest PyKota version from the Subversion tree :
[695]480
[2135]481    $ svn co svn://svn.librelogiciel.com/pykota/trunk pykota
[695]482
[1906]483You can now check if the dependencies are correct by typing :
[695]484
[2135]485    $ python checkdeps.py
[1906]486   
[2234]487    An availability report for all the software needed by PyKota
488    will be displayed : you'll have to install the missing
489    software if you want PyKota to work correctly.
490   
[1906]491To install the software, just type :
492
[2135]493    $ python setup.py install
[695]494
495You may need to be logged in with sufficient privileges (e.g. root)
496
[1960]497Create a system user for PyKota :
498
[2135]499    $ adduser --system --group --home /etc/pykota --gecos PyKota pykota
[1960]500   
501Put the user your printing system is run as in the pykota system group :
502
[2135]503    $ adduser lp pykota
[1960]504   
505    NB : on our system, the CUPS printing system runs as system user 'lp'.
506    Please adapt this to your own system.
507
[695]508Go to the initscripts subdirectory of PyKota's sources, and choose
[1600]509the appropriate storage backend for your configuration. Read carefully
[695]510the associated README file and execute the initialization script
[2597]511to create an empty PyKota database. Upgrade scripts may be
[2269]512provided as well. NB : if you use PostgreSQL, a good way to
513make PyKota work first time is to modify PostgreSQL's pg_hba.conf
514to allow the 'trust' database connection mode. However once PyKota
515works it is HIGHLY RECOMMENDED TO CHANGE THIS TO A MORE SECURE
516VALUE.
[695]517
[1186]518Copy the conf/pykota.conf.sample and  conf/pykotadmin.conf.sample
[1107]519sample configuration files to /etc/pykota/pykota.conf and
[1905]520/etc/pykota/pykotadmin.conf 
521The installation script usually copies these files into /usr/share/pykota
[1198]522
[1979]523NB : You can move PyKota's configuration files elsewhere, they will
524be searched first in user pykota's home directory.
525
[1905]526You need to adapt these files to your own needs. Especially you may
527have to create sections named after your own printers, and change
528the administrator's email address which by default is
529root@localhost. Read and try to understand these two very well
530commented files, so that you'll encounter less problems later.
531
[1198]532Also be sure to double check that commands that query printers
[1186]533for their internal page counter work from the command line
534before using them in PyKota's configuration.
[695]535
[1186]536The rest of the installation depends on your printing system :
537
[1185]538  - CUPS Printing System :
[952]539 
[1185]540    Once and for all :
[952]541   
[1185]542        Create a symbolic link to the cupspykota backend
543        in CUPS's backend directory :
544       
545          $ cd /usr/lib/cups/backend
[1345]546          $ ln -s /usr/share/pykota/cupspykota cupspykota
[1185]547         
548        Restart CUPS so that the new backend can be detected.
549       
550          $ /etc/init.d/cupsys restart
551         
[1600]552        or :   
553     
[1979]554          $ /etc/rc.d/init.d/cupsys restart
[1600]555         
556        or any similar command depending on your operating system. 
557         
[1185]558    For new printers :
[952]559   
[1185]560        Go to CUPS management interface (http://localhost:631)
561        and choose the appropriate PyKota managed device depending
562        on the type of printer you use. For example, if your
563        printer is waiting on :
564       
[1354]565            socket://myprinter.example.com:9100
[1185]566           
567        Then choose :   
568       
[1354]569            cupspykota:socket://myprinter.example.com:9100
[1185]570           
571        Configure your printer as usual.   
572       
[1186]573        Now double check /etc/pykota/pykota.conf
[1600]574       
575        You should manually create a section named after the
[1402]576        printer you've just added, unless you have set
577        all options globally.
[1600]578       
[2468]579        The new pkturnkey command can help you with correct settings
[1408]580        for your printers, but don't rely on it because it is still
[2468]581        experimental work. To have pkturnkey give you some hints
582        about what to put into pykota.conf, just use its --doconf
583        command line switch :
[1186]584       
[2468]585          $ pkturnkey --doconf
[1600]586       
[2468]587        pkturnkey will try to tell you what is the best accounting
[1600]588        method for each printer and will print some lines you'll
589        just have to copy&paste in the appropriate sections in
590        /etc/pykota/pykota.conf
591       
[2468]592        For more informations about what pkturnkey can do for you,
593        see pkturnkey's manual page or use the --help command
594        line switch :
595       
596          $ pkturnkey --help | less
597       
[1185]598        That's all.
[952]599   
[1185]600    For existing printers :
601   
[2714]602        The easiest is to directly modify the DeviceURI lines
[1185]603        in /etc/cups/printers.conf, you just have to put
604        'cupspykota:' in front of what is already on these lines.
605        For example, replace :
606   
[1354]607            DeviceURI socket://myprinter.example.com:9100
[1185]608       
609        with :   
610   
[1354]611            DeviceURI cupspykota:socket://myprinter.example.com:9100
[1345]612           
613        or :   
[1185]614       
[1354]615            DeviceURI cupspykota://socket://myprinter.example.com:9100
[1345]616       
[1185]617        Save the file and restart CUPS.
[1600]618       
[2470]619        Here too, you may find it interesting to use the pkturnkey command as
[1600]620        described above to help with manual configuration of the file
621        /etc/pykota/pykota.conf
[695]622
[1185]623  - LPRng Printing System :
[952]624 
[2478]625    IMPORTANT : This release of PyKota DOES NOT support LPRng.
[1600]626   
[2478]627    If you want to use PyKota with LPRng, you have to download
628    an earlier release of PyKota, for example v1.22HotFix1.
[1600]629       
[1186]630Now you can begin to populate the PyKota's database with printers,
631users and groups :
[952]632 
[716]633Add printers and users to the quota system and set their quota values :
[695]634
[2470]635You can either use pkturnkey, or do the same things manually by
[2714]636using the pkprinters, pkusers and edpykota command line tools :
[1345]637
[2714]638Create printers :
639
[1345]640    $ pkprinters --help
641   
642    will tell you how to create, manage or delete printers and
643    printers groups.
[1402]644   
645    $ pkprinters --add --charge 0.05 hp2100
646   
647    would add the printer named hp2100 with a price per page
648    of 0.05 unit.
[1345]649
[2714]650Create users :
[1402]651
[2714]652    $ pkusers --add --limitby balance --balane 10.0 jerome
[1086]653   
[2714]654    would create user jerome and give him ten credits to spend
655    on any printer.
[1086]656   
[2714]657Finally create print quota entries :
[695]658
[2714]659    $ edpykota --add -P hp2100 jerome
660       
661    This will create a print quota entry for user jerome on   
662    printer hp2100. The print quota entry holds the number of
663    pages printed on a particular printer for a particular
664    user, as well as optional page limits to be used instead
665    of balance limits. See pkusers and edpykota's manual
666    pages for details.
667   
[2478]668Restart CUPS, for example under Debian GNU/Linux systems :         
[695]669
[725]670    $ /etc/init.d/cupsys restart
[990]671   
[695]672Your users now should be able to print but not exceed their
673printing quota.
674
[2234]675To see printer quota usage on printer hp2100, you can use :
[794]676
[2234]677    $ repykota --printer hp2100
[794]678   
679or :
680
681    $ repykota
682   
683    which will print quota usage for all users on all printers,
[2054]684    along with totals, if you are a PyKota Administator. If you are
[1107]685    a regular user, only your own quota report will be produced.
[794]686   
[1107]687Quota reports are also available remotely by using the CGI script
[1345]688printquota.cgi provided in the cgi-bin/ subdirectory. You can
689also use the CSS stylesheet present in the stylesheets/ subdirectory
[1402]690and put it at your web server's DocumentRoot, to benefit from a nicer
691look, especially quota violations will appear in different colors.
[990]692
[2262]693For additionnal security concerns, please give a look at the SECURITY
[980]694file which is part of this software.
[2234]695
696To diagnose a problem when something doesn't work as expected,
697please read the very first entry in the FAQ document.
[741]698           
[695]699============================================================
700
[1979]701Additionnal tools :
702-------------------
703
704Some people have developped tools around PyKota, and make
705them available under the GNU General Public License :
706
707  - Kanakorn Horsiritham developped phpPykotaAdmin which is
[2126]708    a web based database independant administrative GUI,
709    written in PHP.
[1979]710 
711      http://opensource.psu.ac.th/~kanakorn/mambo/
[2126]712     
713    He was also kind enough to write an installation guide 
714    in english for CUPS and PyKota with phpPykotaAdmin on Fedora
715    Core 3. You'll find this document on the same website.
716   
717    This great software currently at version 0.3 is a wonderful
718    basis for an administrative GUI since it only depends on
719    PyKota commands to be present to successfully manage
720    PyKota's database.
[1979]721 
722Additionnal software will be listed here when they will be 
723ready.
724
725============================================================
726
[958]727Mailing list :
728--------------
729
730  A mailing list is dedicated to Pykota, you can subscribe to it
731  or consult its archives at :
732 
733    http://cgi.librelogiciel.com/mailman/listinfo/pykota
734   
[1600]735  The mailing list is the preferred way to obtain support, because 
736  all members can help and can also benefit from the solutions
737  proposed by other members.
738 
739  Posts by non-members are usually rejected.
740 
741  The mailing list language is english and only english.
742   
[1181]743IRC :   
744-----
745
746  You can also chat with us :
747 
748        /server irc.freenode.net
749        /join #pykota
[1600]750       
751  Preferred language on this channel is english, but french     
752  is also accepted. Try to avoid exposing complex problems
753  in french because english speaking people on the channel
754  wouldn't benefit from the solutions.
755 
756  PyKota's main author is known as 'tamere' on IRC.
[1181]757   
[958]758============================================================
759   
[1107]760Please e-mail bugs to the mailing list at : pykota@librelogiciel.com
761or to the main author at : alet@librelogiciel.com (Jerome Alet)
Note: See TracBrowser for help on using the browser.