# $Id$ PyKota - Print Quota for CUPS and LPRng (c) 2003 Jerome Alet This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. ==================================================================== READ SPECIAL LICENSING AND REDISTRIBUTION TERMS IN THE FILE 'LICENSE' ==================================================================== PyKota features : ----------------- Operating systems : - Any Unix-like system as print server. - Any operating system as client. Printing systems : - Supports CUPS as the printing system. - Supports LPRng as the printing system. Databases : - Supports PostgreSQL as the Quota Storage backend. Complete database creation SQL script is included. - Supports OpenLDAP as the Quota Storage backend. Complete LDAP schema and sample tree are included. Plugging PyKota into your existing LDAP infrastructure is really easy thanks to PyKota's great configurability. Printers : - Supports any printer which can report its internal page counter. - Supports any other printer via GhostScript. - Can ask printers for their internal page counter via SNMP, Netatalk, or any other mean of your choice. This is completely configurable. - External accounting methods are configurable Quota systems : - Supports user and groups quotas. - Supports page quotas. Page quotas can be set differently on a per printer and per user/group basis. - Supports account balance quotas in any currency. Account balance quotas can be set on a per user basis. The account balance is shared amongst all printers. - Experimental support for printer groups, so that you can share quota between printers of the same type but in different locations. - Page quota and account balance can be set/reset independantly. - Limiting factor, page quota or account balance, can be set on a per user or per group basis. - Price per page and per job can be set differently on any printer. - Low level of page quota or account balance are configurable. - Both soft and hard limit with configurable grace delay can be set for page quota. - Possibility to disable quota enforcement for any user or group, while still keeping page accounting. Administration : - Powerful administration tools can be used to automate setting or resetting of quotas or account balances at specific intervals. - Administration tools can modify several users, groups, or printers at once. - Account balances can be set, incremented, or decremented. - Users can be automatically added on first print in a completely configurable way. - Quota report generator available either from the command line or in any web browser. The web-based quota report generator can be user/password protected. - Print quote generator can tell users how much a print job will cost them in advance. - Policy with regard to unregistered users can be configured for each printer to either deny printing, allow printing, or delegate the decision to any external tool. - Warning and error messages can be automatically sent via email to the administrator, the user, both, or none. - Warning and error messages' content is completely configurable. - Configuration can be changed without needing to restart the printing system. - Complete print job history is kept. This can be disabled if needed. - Automated low quota or balance remainder can be scheduled regularly or launched manually. User Interface : - All the command line tools accept the -h | --help command line option which prints all the available options and show usage examples. - Completely internationalized. Actually supports the English and French languages. More to come. ==================================================================== Planned features are described in the TODO file. Actually three (or an infinity of) page accounting methods are implemented : - The 'querying' method consists in querying the printer (via SNMP or Netatalk) for its total pages counter, just before the beginning of a job, and use this to modify the *preceding* user's quota. So you're always late of one print job, but this is generally ok, especially because a check is also done to see if the current user is allowed or not to print. You're not limited to SNMP or Netatalk, because you can also use any external command instead if you want. - The 'external' method consists in delegating the computation of the job's size in number of pages to any external command of your choice. The command can read the job's data from its standard input and MUST output the job's size on its standard output. - The 'stupid' method consists in counting the 'showpage' PostSript statements in the job. THIS IS UNRELIABLE, but can serve as an example if you plan to write your own accounting method for integration into PyKota. PyKota is known to work fine with HP Laserjet 2100 and 2200, and Apple LaserWriter 16/600 PS, both with CUPS and LPRng, under Debian GNU/Linux (Sarge and Sid) operating systems. I'm interested in receiving success or failure reports with other brands or models of printers, as well as with other operating systems. ============================================================ INSTALLATION: ============= WARNING : ========= If you run a PyKota version lower than 1.03, you definitely have to upgrade you Quota Storage Database. Please read the documentation included in the initscripts subdirectory first ! Users of MacOS-X may find the following tutorial useful : http://ell-tech.com/pages/pykota.php Prerequisite : -------------- You need to have the following tools installed on the CUPS Server : - CUPS or LPRng - Python v2.1 or above - eGenix' mxDateTime Python extension - SNMP tools (specifically the snmpget command) if you plan to request your printer's lifetime page counter via SNMP. - Netatalk (specifically the pap command) if you plan to request your printer's lifetime page counter via AppleTalk. - PostgreSQL's PygreSQL Python extension and the PostgreSQL client libraries if you plan to use PostgreSQL as the Quota Storage backend. or - python-ldap Python module and the OpenLDAP client libraries if you plan to use OpenLDAP as the Quota Storage backend. You need to have the following tools installed on the Quota Storage Server : - PostgreSQL or - OpenLDAP NB : PygreSQL must be linked with the PostgreSQL client libraries on the Print Server. The PostgreSQL client libraries' version must match the PostgreSQL version used on the Quota Storage Server. or python-ldap must be linked with the OpenLDAP client libraries on the Print Server. The OpenLDAP client libraries' version must match the OpenLDAP version used on the Quota Storage Server. This list of prerequisite software may change in the future, when PyKota will support more functionnalities you will be given alternatives. Of course the Print Server and the Quota Storage Server can be the very same machine if you've got a tiny network, or you can have multiple Print Servers all storing their quotas on the same Quota Storage Server if you've got a bigger network. Then : ------ Download the latest PyKota version from the CVS tree on : http://savannah.nongnu.org/projects/pykota Just type : python setup.py install You may need to be logged in with sufficient privileges (e.g. root) The installation script will now automatically check if some software is missing and ask you if you still want to proceed with the installation or abort it completely. Go to the initscripts subdirectory of PyKota's sources, and choose the appropriate storage backend for your configuration. Read the associated README file and execute the initialization script to create an empty PyKota Storage. Upgrade scripts may be provided as well. Copy the conf/pykota.conf.sample and conf/pykotadmin.conf.sample sample configuration files to /etc/pykota/pykota.conf and /etc/pykota/pykotadmin.conf. The installation script tries to do this for you if needed and you agreed to this action. You need to adapt these files to your own needs. Especially you have to create sections named after your own printers, and change the administrator's email address. - CUPS Print Backend : Modify the PPD files for each printer on which you want to manage print quotas, for example /etc/cups/ppd/lp.ppd : --- Add the line below exactly as-is somewhere near the top --- *cupsFilter: "application/vnd.cups-postscript 0 /usr/bin/pykota" --- Add the line above exactly as-is somewhere near the top --- Modify the path to the pykota executable if needed, unfortunately you have to supply the correct absolute path here due to CUPS internals, or put the pykota executable into /usr/lib/cups/filter instead of into /usr/bin. Do this for each ppd file present in this directory if you want to enable quota on every printer. WARNING : In the case you've got a non-postscript printer, chances are that the *cupsFilter is already filled-in and points to cupsomatic or such a print filter. In this case please check if you can switch your printer to PostScript mode or if there's a way to make it accept PostScript jobs. If yes then ensure that your workstations uses a PostScript printer driver, and replace the *cupsFilter line with the one pointing to the pykota filter. This should work, but is currently untested. If your printer really needs the original *cupsFilter line then you may not be able to use PyKota easily for now. - LPRng Print Backend : Modify the /etc/printcap file to add two lines identical to these ones : :achk=true :as=|/usr/bin/pykota For each printer on which you want to use print accounting. Add printers and users to the quota system and set their quota values : $ edpykota --add -P hp2100 -S 40 -H 50 user1 ... userN launching edpykota without any argument or with the --help command line option will show you all the possibilities. by default, each user is limited by "quota", this means that on each printer he can have a different soft and hard limit. You may want to limit the user by his account balance value, in which case, the print quota is shared between all printers instead of being different. To do this, use the following : $ edpykota --add -P hp2100 --limitby balance --balance 10 user1 ... userN This will put 10 $ (or Euros, PyKota doesn't care) on each user's account balance, and tell PyKota to limit them by their account balance value. Whenever they print on any printer, their account balance value is decreased by an amount which depends on the particular price per page and per job that you may have defined on the printer with edpykota's --charge command line option. Soft and Hard limits are not used if "--limitby balance" is used, but you can define a "poorman"'s threshold in /etc/pykota/pykota.conf to obtain a similar result (warning message when quota is low). Restart CUPS or LPRng, for example under Debian GNU/Linux systems : $ /etc/init.d/cupsys restart or : $ /etc/init.d/lprng restart Your users now should be able to print but not exceed their printing quota. To see printer quota usage, you can use : $ repykota --printer lp or : $ repykota which will print quota usage for all users on all printers, along with totals, if you are the root user. If you are a regular user, only your own quota report will be produced. Quota reports are also available remotely by using the CGI script printquota.cgi provided in the cgi-bin/ subdirectory. For different security concerns, please give a look at the SECURITY file which is part of this software. ============================================================ Mailing list : -------------- A mailing list is dedicated to Pykota, you can subscribe to it or consult its archives at : http://cgi.librelogiciel.com/mailman/listinfo/pykota ============================================================ Please e-mail bugs to the mailing list at : pykota@librelogiciel.com or to the main author at : alet@librelogiciel.com (Jerome Alet)