root / pykota / trunk / NEWS @ 3101

Revision 3101, 83.3 kB (checked in by jerome, 17 years ago)

Fixed a bug in ink accounting, thx to Netzwerkler.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
Line 
1# $Id$
2
3PyKota - Print Quotas for CUPS and LPRng
4
5(c) 2003, 2004, 2005, 2006 Jerome Alet <alet@librelogiciel.com>
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.
10
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.
15
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19
20============================================================
21
22PyKota NEWS :
23       
24    - 1.25beta (2006-11-30) :
25   
26        - Fixed a bug wrt ink accounting, thanks to Netzwerkler.
27   
28        - Updated all message catalogs and manual pages.
29       
30    - 1.25alpha18 (2006-11-30) :
31   
32        - Make the data dumper accept jobid= as an additional filter, just
33          like pkrefund and pkinvoice.
34       
35        - Make pkinvoice internally work like pkrefund.
36       
37        - Fixed a severe bug in the LDAP backend wrt the overcharging factor.
38       
39    - 1.25alpha17 (2006-11-27) :
40   
41        - pkrefund can now create receipts in the PDF format.
42       
43        - The code was changed to accomodate ReportLab 2.x in pkbanner
44          and pkinvoice. ReportLab v1.x is now only supported with
45          an english or C locale.
46         
47        - pknotify now accepts the --noremote command line option to
48          decide what has to be done when there's no PyKotIcon running
49          or accepting connections from the print server on the client host.
50         
51        - pkprinters now only modifies CUPS' printers.conf when the
52          -C | --cups command line switch is used.
53         
54    - 1.25alpha16 (2006-11-12) :
55     
56        - Several fixes to CGI scripts wrt i18n.
57       
58        - Introduced the pkrefund command line tool to refund jobs.
59       
60        - Several i18n fixes.
61       
62        - Several minor fixes to documentation and translations.
63       
64    - 1.25alpha15 (2006-11-06) :   
65   
66        - pkprinters --add and --delete now automatically reroutes CUPS
67          print queues through PyKota or through CUPS only.
68         
69        - Fixed date and time parsing problems.
70       
71        - Finally simplified the locking code again, and checked that no
72          stalled lock can persist. The lock files remain on disk though,
73          but it is a small price to pay.
74         
75    - 1.25alpha14 (2006-10-13) :
76     
77        - Removed some locking code which would have prevented multi-server
78          configuration to work correctly with a shared lock directory.
79         
80        - First useable release with the computation of ink
81          usage, through the introduction of the 'ink(cspace, resolution)'
82          value for the 'preaccounter' and 'accounter' directives in
83          pykota.conf
84         
85    - 1.25alpha13 (2006-10-04) :
86     
87        - The dumpykota.cgi script now does basic form checking
88          to immediately avoid incompatible dump options and
89          alerts the end user if Javascript is enabled.
90         
91        - The filter keys in dumpykota can now be specified in
92          lower or upper case.
93         
94        - Introduced the 'noprintingmaxdelay' directive to workaround
95          some buggy printers when hardware accounting is used.
96         
97        - Improved the reliability of hardware accounting. 
98         
99    - 1.25alpha12 (2006-09-15) :
100   
101        - Fixes encoding of username and billingcode when they
102          are overwritten by a subprocess.
103         
104    - 1.25alpha11 (2006-09-06) :
105   
106        - Now fails in an helpful manner if python-mysqldb is too old.
107       
108        - Now exports the original username and billing code (i.e.
109          their values before they are eventually overwritten) in
110          two additionnal environment variables.
111         
112    - 1.25alpha10 (2006-09-03) :
113   
114        - Rewrote the locking mechanism to try to fix the problem
115          some people reported.
116         
117        - Permissions on cupspykota are now correctly set after
118          installation.
119         
120        - Added a workaround to incorrect charset through the add
121          of the python-chardet module as a dependency.
122         
123    - 1.25alpha9 (2006-08-10) :
124   
125        - Fixed a problem when an SMTP error occured and the recovery
126          routine failed to handle it correctly.
127         
128    - 1.25alpha8 (2006-07-11) :
129   
130        - Fixed a problem in the MySQL schema.
131       
132    - 1.25alpha7 (2006-06-20) :
133   
134        - Fixed some date formatting problems when retrieving the
135          printing history with MySQL.
136         
137        - Began code cleaning. 
138         
139    - 1.25alpha6 (2006-06-13) :
140   
141        - pkusers now supports the --email command line switch.
142          The old method to set the email address is still supported,
143          but the new one allows the email address to be modified
144          as well.
145         
146    - 1.25alpha6 (2006-06-09) :
147   
148        - Fixed the incorrect overwriting of the original billing
149          code if the overwrite_jobticket directive was used.
150         
151    - 1.25alpha5 (2006-06-03) :
152   
153        - Fixed minor issues with pkipplib's usage.
154       
155        - Fixed MySQL schema to workaround some "features"...
156       
157    - 1.25alpha4 (2006-05-23) :
158   
159        - Introduced the 'askconfirmation' directive to interact with
160          the end user through any script (pknotify is recommended)
161          and see if he really wants to print when knowing the cost
162          of the job.
163         
164        - Now uses pkipplib if present to directly retrieve the job
165          information from the CUPS server over IPP.
166         
167    - 1.25alpha3 (2006-05-11) :
168   
169        - Added a lock to ensure that a single cupspykota backend
170          is processing datas for a particular print queue at any
171          given time.
172         
173        - Now exports more environment variables for the subprocesses.
174         
175    - 1.25alpha2 (2006-05-03) :
176   
177        - Fixed some problems with DateTime objects.
178       
179        - Added support for PySNMP v4.x in addition to 3.4.x.
180       
181    - 1.25alpha1 (2006-04-14) :
182   
183        - Make the MySQL schema work with old releases of MySQL.
184       
185        - Fixed several character encoding problems.
186         
187        - Ensures that the denied banners counter is properly initialized
188          with relationnal databases.
189         
190    - 1.24 (2006-04-08) :
191   
192        - Improved documentation and packaging stuff.
193       
194    - 1.24beta (2006-03-26) :
195   
196        - Finalized the pknotify command.
197       
198        - Updated the messages catalogs for translations.
199       
200    - 1.24alpha18 (2006-03-15) :
201   
202        - Now uses MIME encapsulation for email messages to avoid
203          some problems with 8 bits messages being rejected.
204         
205    - 1.24alpha17 (2006-03-06) :
206   
207        - Fixed a major problem in the PostgreSQL backend.
208       
209        - pknotify can now check a remote user's name and password.
210       
211    - 1.24alpha16 (2006-03-02) :
212   
213        - Introduced the pknotify command line tool to dialog
214          with remote PyKotIcon applications.
215         
216    - 1.24alpha15 (2006-03-02) :
217       
218        - optimized pkbcodes, pkprinters and pkusers using edpykota as
219          the model.
220       
221        - 'edpykota --list' and 'pkusers --list' are now authorized
222          to mere mortal users, but the list is restricted to informations
223          about the current user.
224       
225        - Extended the functionnality of the 'onbackenderror' directive to
226          allow for configurable retries.
227         
228    - 1.24alpha14 :
229   
230        - Finished optimizations in edpykota and fixed some minor
231          problems with LDAP.
232         
233    - 1.24alpha13 :
234   
235        - Introduced the pkusers command line tool to manage users and 
236          users groups. This command doesn't deal with print quota entries,
237          which continue to be managed through the edpykota command line
238          tool.
239         
240        - Major rewrite and incompatible changes to command line options
241          in edpykota. This command now only deals with print quota
242          entries. Printers, users (or users groups) now have to be created
243          first using pkprinters or pkusers.
244         
245    - 1.24alpha12 :
246   
247        - Introduced the 'duplicatesdelay' directive to specify after
248          which duration two duplicate jobs are not considered duplicate
249          jobs anymore.
250         
251        - Introduced the 'balancezero' directive to specify any value 
252          as the balance limit instead of 0.0. This can allow admins to
253          give a few free credits to users, for example.
254         
255    - 1.24alpha11 :
256   
257        - Huge speed improvements when modifying billing codes and
258          printers.
259       
260        - Both pkbcodes and pkprinters now display the percent done
261          for all actions.
262         
263        - The pkinvoice invoice generator command line utility is now
264          included.
265         
266    - 1.24alpha10 :   
267   
268        - Huge speed improvements when deleting users, printers, and
269          billing codes.
270         
271    - 1.24alpha9 :
272   
273        - Preliminary support for MySQL, thanks to Matt Hyclak.
274       
275    - 1.24alpha8 :
276   
277        - The 'preaccounter' configuration directive was introduced to control
278          which parser to use for precomputation of the job's size. When unset,
279          the internal parser is used just like it was previously. See
280          conf/pykota.conf.sample for more details.
281         
282        - Now subprocesses launched through the overwrite_jobticket directive
283          can also output 'CANCEL', to represent the user's own choice to
284          cancel the print job.
285         
286    - 1.24alpha7 :
287     
288        - pkbanner now handles new print limiting modes correctly.
289       
290        - The cupspykota backend wrapper now accepts to be interrupted
291          with a kill -INT. This causes an immediate and clean abort
292          of the current print job.
293         
294        - Matt Hyclak contributed the possibility to store the printing
295          history in a MySQL database. See the contributed/ directory
296          for details.
297         
298        - Added 2006 to the copyright's years.
299       
300    - 1.24alpha6 :
301   
302        - Fixed internal SNMP and PJL handling code for very fast
303          printers : PyKota didn't see them going from 'idle'
304          to 'printing' to 'idle' again.
305         
306        - Now waitprinter.sh accepts SNMP version number and
307          community name as arguments, thanks to Brandon
308          Holbrook.
309         
310        - Now command line errors and Ctrl+C repectively cause
311          PyKota commands to exit with status -2 and -3.
312         
313    - 1.24alpha5 :
314   
315        - All command line tools now accept -A | --arguments filename.args
316          as a way to bypass the shell's maximal command line size :
317          just put each argument on a line by itself in a file, and
318          pass the file's name as the -A | --arguments command line
319          option's argument. For now this won't be documented in
320          commands' helps.
321         
322        - dumpykota can now dump the complete database in XML
323          format.
324         
325    - 1.24alpha4 :
326   
327        - Added support for the SQLite3 backend.
328          See pykota/initscripts/sqlite/README.sqlite
329       
330    - 1.24alpha3 :
331   
332        - Fix for mailandpopup.sh : smbstatus can't be run setuid,
333          so we regain priviledges before running an external
334          mailto directive.
335       
336    - 1.24alpha2 :
337   
338        - Introduce the "onbackenderror" directive in pykota.conf, to
339          control if the user must be charged or not whenever a real
340          CUPS backend fails. The default value is 'nocharge'.
341          Set it to 'charge' if you think your users can cause a CUPS
342          backend to fail.
343         
344        - Now mark original backends related problems as such in the
345          printing history. Modified printquota.cgi and pykota.css
346          to make them be more visible.
347         
348    - 1.24alpha1 :
349   
350        - Fixed a problem which caused backend errors to be ignored.
351       
352        - The sample LDIF file now contains the two necessary user
353          entries to have an LDAP PyKota Admin and an LDAP PyKota
354          ReadOnly user. The sample configuration files were updated
355          to contain the default passwords used in the LDIF file.
356         
357        - dumpykota is now more strict when checking arguments.   
358       
359    - 1.23 :
360   
361        - Many minor bug fixes and code cleaning.
362       
363        - Improved documentation.
364       
365        - Added Polish translation.
366       
367        - Improved French and Swedish translations.
368       
369    - 1.23beta :
370   
371        - Now the mailto directive is honored in all cases where the job is
372          denied or a warning has to be issued, and the correct reason
373          can be sent back to the user.
374         
375        - The PYKOTAREASON environment variable, if defined, contains the 
376          textual reason why the job was denied or a warning has to be
377          issued.
378       
379    - 1.23alpha31 :
380   
381        - Added support for --maxjobsize, --passthrough and --nopassthrough
382          in pkprinters. These modes are now also honored when printing.
383         
384        - Allows the admin to restrict the number of print queues which will
385          be treated by pkturnkey by passing queues' names as additionnal
386          arguments on pkturnkey's command line.
387         
388        - pkturnkey now supersedes pkhint with the help of the -c | --doconf
389          command line option.   
390         
391    - 1.23alpha30 :
392   
393        - Database changes : you MUST use upgrade-to-1.23.sql again if you
394          use PostgreSQL, or copy the new schema and restart your LDAP
395          server if you use LDAP.
396         
397        - The -C | --comment command line switch was added to edpykota to 
398          attach textual information to modifications done to a user's
399          account balance.
400         
401        - The -l | --limitby command line switch to edpykota was modified 
402          to allow 'noquota', 'nochange', and 'noprint'. See the edpykota
403          command's help or manual page for details.
404         
405        - The -i | --ingroups command line switch to repykota allows 
406          PyKota Administrators to only lists members of the specified
407          group or groups (separated with commas).
408         
409        - The -I | --increase command line switch to edpykota allows
410          to increase or decrease page limits.
411         
412        - Added the precomputed job's size and price to the history
413          for controlling purpose.
414       
415    - 1.23alpha29 :
416   
417        - Fixed a small problem with billing codes.
418       
419        - Exports some environment variables earlier, to render the script
420          launched by the overwrite_jobticket directive more powerful.
421         
422        - Now autopykota also creates print quota entries for the user on the
423          printers groups the current printer is a member of.
424         
425    - 1.23alpha28 :
426   
427        - Added users groups management to pkturnkey.
428       
429        - Fixed umask in setup script.
430       
431    - 1.23alpha27 :
432   
433        - Replaced the --dryrun command line option by the --force
434          command line option in pkturnkey, with exactly the opposite
435          effect (for security reasons).
436         
437    - 1.23alpha26 :
438   
439        - Allows parametrized pjl and snmp hardware accounting methods,
440          to be able to respectively set the TCP port and the SNMP
441          community.
442         
443    - 1.23alpha25 :
444   
445        - Added a --dryrun command line switch to pkturnkey.
446       
447        - Improved pkturnkey's general usability.
448       
449        - Added a manpage for pkturnkey.
450       
451    - 1.23alpha24 :
452   
453        - Allows different databases to be used depending on the
454          user's rights. This allows PyKota admins to directly
455          use a master LDAP server for read+write, while letting
456          normal users using the replicas for readonly access.
457          NB : using different storage backends is also possible,
458          but you're on your own there.
459         
460    - 1.23alpha23 :
461   
462        - Fixed a problem with banner accounting.
463   
464        - Introduction of the new 'pkturnkey' command line tool.
465       
466    - 1.23alpha22 :
467   
468        - The cupspykota backend was almost entirely rewritten from scratch.
469          It's now much more readable, maintainable, etc...
470         
471        - LPRng support is OFFICIALLY dropped for now. LPRng users are 
472          advised to download earlier releases or purchase the
473          PyKota v1.22HotFix1 Official release. LPRng support
474          MIGHT be re-added later.
475       
476    - 1.23alpha21 :
477     
478        - Fix for IPP requests which contain more than a single
479          job-originating-host-name attribute.
480         
481    - 1.23alpha20 :
482   
483        - Added the overwrite_jobticket directive. See pykota.conf.sample
484          for how to use it.
485         
486    - 1.23alpha19 :
487   
488        - Fixed an LDAP filtering problem when managing billing codes.
489       
490        - Added the unknown_billingcode directive. See pykota.conf.sample
491          for how to use it.
492       
493    - 1.23alpha18 :
494     
495        - Added the dump_bfd.php contribution.
496       
497        - Several fixes in the internal PJL accounter.
498       
499        - Now autopykota doesn't create unneeded print quota entries anymore.
500       
501        - Increased the timeout in the PJL hardware accounting code to
502          accomodate some printers (HP5000 at least).
503         
504    - 1.23alpha17 :
505   
506        - pkpgcounter is now distributed separately only. This
507          means that people must now download and install pkpgcounter
508          v1.56 or higher prior to being able to run PyKota.
509         
510        - Removed all the autoconf/automake stuff which was outdated 
511          and confusing.
512         
513    - 1.23alpha16 :
514     
515        - Extracted the GPL blurb from all commands' help, and use
516          a static version only once. This saves space big time, and
517          eases future translations.
518         
519    - 1.23alpha15 :
520   
521        - pkbcodes now works with the PostgreSQL backend.
522          NB : PLEASE RUN upgrade-to-1.23.sql AGAIN !!!
523       
524    - 1.23alpha14 :
525   
526        - Logs a warning when the user/group doesn't exist when running
527          edpykota.
528         
529    - 1.23alpha13 :
530   
531        - Minor fix for user groups because of latest database changes.
532       
533    - 1.23alpha12 :
534   
535        - Big database changes, use the migration scripts !
536       
537    - 1.23alpha11 :
538   
539        - Small fix to the PCL3/4/5 parser for some drivers.
540       
541    - 1.23alpha10 :
542   
543        - Fixed a bad exception name in cupspykota when parsing IPP messages.
544       
545        - Improved the IPP messages module : it can now generate IPP messages
546          in addition to parsing them.
547       
548    - 1.23alpha9 :   
549   
550        - The denyduplicates directive now accepts a command line as an
551          argument beside yes/no. The command is launched and must
552          print either ALLOW or DENY to its standard output. Then the
553          job gets allowed or denied by PyKota.
554          This will allow user interaction in the near future.
555         
556        - Introduced the new 'striptitle' directive to remove ugly prefixes
557          from print job's titles whenever a new print job is submitted.
558         
559        - Fixed internal SNMP accounter for printers which only have a life time
560          page counter, and not a volatile page counter.
561         
562    - 1.23alpha8 :
563   
564        - The data dumper can now summarize payments and history with the
565          help of the --sum command line option (or checkbox in the CGI).
566         
567        - The message used when the job's filename, title and options are
568          hidden because of the privacy directive is now translated at
569          retrieval time, instead of at saving time.
570         
571        - Minor fix in the LDAP backend code. 
572         
573    - 1.23alpha7 :
574   
575        - Improvements to the internal PJL and SNMP accounter : now should
576          support more printers and waste less time.
577         
578    - 1.23alpha6 :
579   
580        - The data dumper's start= and end= date filtering options now
581          accept a positive or negative offset to be added to the special
582          keywords 'yesterday', 'today', 'now', 'tomorrow'.
583          e.g. : dumpykota --data history start=yesterday-5 end=today
584         
585    - 1.23alpha5 :
586   
587        - The data dumper's start= and end= date filtering options now accept
588          the special keywords 'yesterday', 'today', 'now' and 'tomorrow'.
589         
590    - 1.23alpha4 :
591   
592        - The data dumper now accept start= and end= to specify the starting
593          and ending dates to dump the history.
594         
595    - 1.23alpha3 :
596   
597        - The destination link for the logo used in CGI scripts is
598          configurable.
599         
600        - Data dumper improved : it's faster and now datas are correctly
601          escaped.
602       
603        - The URL to the logo displayed in the CGI scripts is configurable.
604       
605    - 1.23alpha2 :
606   
607        - Fixed edpykota --prototype with balance.
608       
609        - Major rewrite of the IPP message parsing code to definitely
610          fix the job-originating-hostname IPP attribute problem.
611       
612    - 1.23alpha1 :   
613   
614        - Sets current username to the user CUPS runs as instead of "root"
615          when printing test pages from CUPS' web interface (because
616          the username is empty in this case).
617         
618        - Fix for strange values in job-originating-hostname
619       
620    - 1.22 :
621   
622        - Big improvements to the documentation.
623       
624    - 1.22beta :
625   
626        - Improved stability in pykotme and pykotme.cgi.
627       
628        - Fixed a permission problem in pykotme and pykosd.
629       
630        - Fixed an inconsitency between SQL and LDAP backends'
631          behavior in edpykota.
632         
633        - Improved stability and allowed tracebacks in CGI scripts.
634       
635        - Improved pykotme.cgi
636         
637    - 1.22alpha8 :
638   
639        - Fixed history retrieval for nonexisting printers or users.
640       
641        - Clicking on the billing code in printquota.cgi's job history
642          now shows all jobs matching this billing code.
643         
644        - Fixed the dump in CUPS' page_log format which didn't
645          dump the oldest entry.
646         
647        - The data dumper now accepts billingcode= and hostname= as
648          filters when dumping the job history.
649         
650        - The job billing code if present is now saved into the database,
651          and exported to subprocesses as the PYKOTAJOBBILLING environment
652          variable.
653         
654        - Ctrl+C now makes PyKota commands exit without a traceback.
655       
656        - Fixed an i18n problem with Python 2.1
657       
658    - 1.22alpha7 :
659   
660        - Fixed some problems with the retrieval of the history from LDAP.
661       
662    - 1.22alpha6 :
663   
664        - Early errors now produce meaningful error messages (finally !)
665       
666    - 1.22alpha5 :
667       
668        - SNMP and PJL improvements with regard to PowerSave / StandBy.
669       
670    - 1.22alpha4 :
671   
672        - Fixed charset problem under MacOSX.
673       
674        - Allows pkbanner to accept more info to display on its
675          command line.
676         
677    - 1.22alpha3 :
678   
679        - Fixes some case related problems with some LDAP backends.
680       
681        - Fixes some problem for printers which directly go from
682          "idle" to "warmup" and never to "printing" before
683          returning to "idle".
684         
685        - Some permissions settings may have prevented cupspykota
686          from parsing cupsd.conf, this is now fixed.
687         
688    - 1.22alpha2 :
689   
690        - Introduction of the web enabled print quote generator.
691       
692        - Fixed a potential race condition when several backend
693          wrappers were present in CUPS' backend directory.
694         
695        - Fixed dumpykota's output in CUPS' page_log format to better
696          match CUPS format.
697         
698    - 1.22alpha1 :
699   
700        - Import into Subversion.
701       
702    - 1.21 :
703   
704        - Improved documentation.
705       
706        - Improved dependencies checker.
707       
708        - Updated some translation files.
709       
710    - 1.21beta2 :
711   
712        - Fixed an LPRng specific bug.
713       
714        - Several improvements on stability issues with manually modified
715          LDAP trees.
716         
717        - Documentation improvements. 
718       
719    - 1.21beta :
720   
721        - Prepared translation files for next release.
722       
723    - 1.21alpha27 :
724   
725        - Allows software() (no arguments) to the software accounting
726          directive. This saves a lot of CPU since the job is not
727          parsed again : the precomputed size is used directly in this
728          case.
729         
730        - epykota's --prototype option now works fine with accounts
731          limited by balance.
732         
733    - 1.21alpha26 :
734   
735        - Fixed the handling of the 'maxdenybanners' directive.
736       
737        - Introduced the 'denyduplicates' directive.
738       
739        - Fixed some database related glitches.
740       
741    - 1.21alpha25 :
742   
743        - The job's size is now always precomputed, even when
744          'enforcement' is not set to 'strict'.
745         
746        - Introduction of the new 'trustjobsize' configuration directive
747          to workaround some problematic printers. See the sample
748          configuration file for details.
749         
750    - 1.21alpha24 :
751   
752        - Big database structure changes. An upgrade script
753          is now included for PostgreSQL. LDAP users may just
754          want to copy the new schema in place.
755         
756        - edpykota now recognizes the -o | --overcharge command line
757          option to set an overcharging or undercharging factor
758          on each print job's cost for a particular user.
759         
760        - repykota's output format has changed an is not limited to 
761          80 characters wide anymore. People who used to parse
762          repykota's output in their own tools are strongly advised
763          to parse dumpykota's output instead.
764         
765        - Introduction of the new 'maxdenybanners' configuration directive
766          to allow up to N (the directive's value) deny banners to be
767          printed even if the print account is forbidden to print.
768         
769        - Better detection of the number of copies in the PostScript parser.
770       
771    - 1.21alpha23 :
772   
773        - Traditional Chinese translation added.
774   
775        - Several fixes and performance improvements with the LDAP backend.
776       
777    - 1.21alpha22 :
778   
779        - edpykota's --delete command line option doesn't consider
780          '*' to be the default argument anymore :-)
781         
782    - 1.21alpha21 :
783   
784        - dumpykota.cgi can now be run as a normal user as opposed to
785          a PyKota administrator. No read access to pykotadmin.conf is
786          necessary anymore. This CGI scripts now honors the REMOTE_USER
787          environment variable just like printquota.cgi does, see
788          the file cgi-bin/README for details.
789          The command line tool dumpykota must still be run by a PyKota
790          administrator.
791         
792        - Fix exception's name error due to a change in recent versions
793          of PygreSQL.   
794         
795    - 1.21alpha20 :
796         
797        - Big bug fix wrt the datelimit field which was never reset.
798         
799    - 1.21alpha19 :
800   
801        - Introduction of the new dumpykota.cgi CGI script, which
802          allows third party tools like phpPrintAnalyzer to be
803          interfaced in real time with PyKota. To use it you
804          may have to change your web server's configuration,
805          please see pykota/cgi-bin/README
806         
807    - 1.21alpha18 :
808   
809        - Now dumpykota can dump the job history into CUPS' page_log
810          format (even when the printing system is LPRng). This allows
811          people to use tools like PrintAnalyzer or phpPrintAnalyzer
812          (two completely different beasts) with PyKota.
813         
814    - 1.21alpha17 :
815     
816        - Fixed field type's name in XML dumps.
817       
818        - Now drops priviledges to user 'pykota' when launched as root
819          (directly or as a CUPS backend), if such an user exists.
820         
821        - Fixed PCL3/4/5 parser for some drivers' output.
822       
823    - 1.21alpha16 :
824   
825        - fixed several recently introduced bugs in LDAP backend code,
826          thanks to Matt Hyclak.
827         
828    - 1.21alpha15 :
829     
830        - Normalized field names between LDAP and PostgreSQL backends
831          in dumpykota's output.
832         
833        - dumpykota filtering capabilities are now supported within
834          the LDAP backend too.
835         
836    - 1.21alpha14 :
837   
838        - dumpykota now supports extended filtering possibilities
839          with the PostgreSQL backend (LDAP support will come soon).
840         
841    - 1.21alpha13 :
842   
843        - Added a --debug command line option to pkpgcounter, so
844          that people may see what really happens, and what will
845          be available in the future :-)
846         
847    - 1.21alpha12 :
848   
849        - Fixed a bug with non standard pkbanner command lines.
850       
851        - Now logs as errors the differences between precomputed and
852          computed job sizes. **CUPS only for now**
853         
854    - 1.21alpha11 :
855   
856        - Now user and group print quota entries can be stored directly
857          below the user or group with the LDAP backend, using them
858          as branches. Thanks to Stefan Wold for the patch.
859          See the sample configuration file for details.
860         
861        - TLS is now supported with the LDAP backend. Thanks to Stefan
862          Wold for the patch.
863          See the sample configuration file for details.
864         
865        - edpkota now accepts the -U | --used value command line argument
866          to preset the page counters to an initial value. Thanks to
867          Wilson Roberto Afonso and Matt Hyclak for the patch.
868         
869    - 1.21alpha10 :
870   
871        - Now automatically reconnects up to three times if the LDAP server
872          returned an error, possibly due to a timeout.
873         
874    - 1.21alpha9 :
875   
876        - Now searches the configuration files in 'pykota' system user's
877          home directory. The 'pykota' system user and group have
878          to be created by the system administrator, and given
879          sufficient permissions to PyKota's configuration files.
880         
881    - 1.21alpha8 :
882   
883        - Added the new reject_unknown directive to reject the
884          creation of user or groups which are unknown to the system.
885         
886    - 1.21alpha7 :
887   
888        - Introduction of the pkmail email gateway.
889       
890    - 1.21alpha6 :
891   
892        - Fix for LPRng filenames.
893       
894        - Added Turkish translation thanks to Baris Cicek.
895       
896    - 1.21alpha5 :
897   
898        - Improved ESC/P2 miniparser for Stylus Photo printers.
899       
900        - Implemented the --savetoner command line option to pkbanner.
901       
902        - Improved pkbanner's help and messages.
903       
904    - 1.21alpha4 :
905   
906        - Fixed job's data file detection code for LPRng.
907       
908        - Fixed a problem with PJL and PowerSave mode,
909          thanks to Wilson Roberto Afonso.
910       
911    - 1.21alpha3 :
912   
913        - PyKota can now generate its own banners, and either account
914          for them or not, depending on newly introduced directives
915          in pykota.conf
916          Thanks to Matt Hyclak for the patch.
917         
918    - 1.21alpha2 :
919   
920        - Installation script is now non interactive again, as it should
921          have stayed from the beginning. Dependencies checking can
922          be done by launching the checkdeps.py command.
923         
924    - 1.21alpha1 :
925   
926        - added an IPP messages miniparser. Extraction of the client
927          hostname is now considered to be fiable, at least until
928          the CUPS developpers change something...
929       
930    - 1.20 :
931   
932        - Version number changed.
933       
934    - 1.20beta :
935   
936        - Norwegian (Bokm� preliminary translation added.
937       
938        - German translation was finalized.
939       
940        - Greek translation was finalized.
941       
942        - For urgent legal reasons, a "privacy" directive has been added
943          to pykota.conf, to hide jobs' title, filename and options
944          in the history.
945         
946        - Minor changes in the debian directory.
947       
948    - 1.20alpha27 :
949   
950        - Fixed many problems with translation files. In particular
951          the Brazilian Portuguese translation file was incorrectly
952          installed into the french "breton" locale directory.
953         
954        - Finished French translation. 
955         
956    - 1.20alpha26 :
957   
958        - LPRng support code should now better detect network
959          printers' hostnames or IP addresses.
960         
961        - Fix for recently introduced bug in LPRng support.
962       
963        - Fix for incorrect locale setting when starting.
964       
965    - 1.20alpha25 :
966   
967        - pkprinters allows --list to normal users, but require user
968          to be a PyKota administrator when another command line
969          option is used.
970         
971        - pkhint doesn't use absolute path to search for helper commands
972          anymore.
973         
974        - Spanish translation ready for 1.20.   
975       
976    - 1.20alpha24 :
977   
978        - Now warnpykota only warns users limited by balance once.
979       
980        - Now warnpykota only warns users who have ever printed,
981          to not cause confusion to users who have just opened
982          their account.
983       
984        - Prepared help messages for translations.
985       
986    - 1.20alpha23 :
987   
988        - Add workaround for locale problem.
989       
990    - 1.20alpha22 :
991   
992        - Hopefully final fix for data encoding charset.
993       
994        - edpykota now refuse to work if the user is not a PyKota admin.
995       
996        - Fixes a recently introduced bug with users groups and PostgreSQL.
997       
998    - 1.20alpha21 :
999   
1000        - Now dumpykota refuses to launch if the current user is not
1001          a PyKota administrator (a PyKota administrator is an user
1002          allowed to read the pykotadmin.conf file).
1003         
1004        - Now any PyKota administrator can use repykota and warnpykota
1005          with additionnal arguments, not only the root user.
1006         
1007        - Improved documentation a bit.
1008       
1009    - 1.20alpha20 :
1010   
1011        - Reduced delay in internal SNMP and PJL_over_TCP handlers
1012          from 2 to 1 second.
1013       
1014        - dumpykota can now output XML.
1015       
1016    - 1.20alpha19 :
1017   
1018        - Improved user groups and user groups quotas dumps in dumpykota.
1019       
1020        - Finished implementation of LDAP support in dumpykota.
1021       
1022        - The md5 sum of the job's datas is now available as an
1023          hexadecimal digest in the PYKOTAMD5SUM environment variable.
1024         
1025        - The description, filename, title, and options fields
1026          are now stored as UTF-8 strings in both LDAP and PostgreSQL.
1027          Proper charset is used during extraction from the database.
1028         
1029    - 1.20alpha18 :
1030   
1031        - Experimental autopykota command to initialize user
1032          account and quota entries on first print while not
1033          resetting the balance value if not needed.
1034         
1035        - Added the new "winbind_separator" directive to strip
1036          out the Samba/Winbind domain name while printing if
1037          needed (Off by default).
1038         
1039    - 1.20alpha17 :
1040   
1041        - Added --hardreset command line option to edpykota.
1042       
1043        - Fixed problem with accented chars in title, filename
1044          or options and LDAP backend.
1045         
1046    - 1.20alpha16 :
1047   
1048        - Internal handling of socket based PJL queries over
1049          port tcp/9100 is now available with the magic
1050          'pjl' value in the hardware accounter.
1051         
1052    - 1.20alpha15 :
1053   
1054        - LDAP pykotaAccountBalance objects were always created
1055          attached to the pykotaUser objects. This is now
1056          fixed and the value of balancebase in pykota.conf
1057          is now correctly used.
1058         
1059    - 1.20alpha14 :
1060   
1061        - Belgian translations added (copy of the french ones).
1062       
1063        - External hardware accounter now loops until
1064          a result can be read correctly.
1065         
1066        - pkhint now suggest the internal snmp handling instead
1067          of the external one.
1068         
1069    - 1.20alpha13 :
1070     
1071        - Hardware accounter now accepts the special
1072          'snmp' value, meaning ALL is done from main code
1073          without launching any subprocess.
1074          You need the http://pysnmp.sf.net Python module
1075          for this to work (tested with v3.4.2)
1076         
1077        - Increased delay between two loops iterations 
1078          to 2 seconds in waitprinter.sh to diminish
1079          CPU load.
1080         
1081    - 1.20alpha12 :
1082   
1083        - waitprinter.sh rewritten from scratch to wait
1084          for printer status stabilization.
1085       
1086    - 1.20alpha11 :
1087   
1088        - Generic data dumper 'dumpykota' introduced.
1089          Works only with PostgreSQL backend for now.
1090         
1091    - 1.20alpha10 :
1092   
1093        - Added fix for incorrect job's size computation when
1094          hardware accounting fails.
1095         
1096    - 1.20alpha9 :
1097   
1098        - Small fixes wrt subprocesses.
1099       
1100    - 1.20alpha8 :
1101   
1102        - Added full support of PCL3 : HP Deskjet printers are now
1103          supported.
1104       
1105    - 1.20alpha7 :
1106   
1107        - First draft of PCL3GUI (Deskjet 640C for example) analyzer.
1108          Needs more work, but no documentation is available.
1109       
1110    - 1.20alpha6 :
1111     
1112        - Improved mailandpopup.sh script.
1113       
1114        - Small fixes for LPRng.
1115       
1116        - Now exports PYKOTAPRINTERHOSTNAME for network printers'
1117          hostname or IP address. Set to 'localhost' when not
1118          meaningful.
1119         
1120        - Fixed issue with how mod_auth_ldap Apache modules
1121          fills the REMOTE_USER environment variable.
1122         
1123        - Fixed a bug in LDAP user deletion code.
1124       
1125    - 1.20alpha5 :
1126     
1127        - Introduces the new configuration directive 'onaccountererror'
1128          to specify what must be done whenever the software or
1129          hardware accounter fails. Allowed values are 'continue' and
1130          'stop' (default).
1131         
1132        - Minor fix in software accounter for a recently introduced
1133          problem.
1134         
1135    - 1.20alpha4 :
1136   
1137        - Added support for more ghostscript devices in ESC/P2
1138          analyzer : stcolor, st800, escp, escpc are now supported.
1139         
1140    - 1.20alpha3 :
1141       
1142        - Small improvement in PostScript parser to avoid being
1143          fooled by a change in number of copies :
1144          The user can't ask for 200 copies of page 1 and 1 copy
1145          of page 2 to fool PyKota anymore :
1146          this would have been accounted for as 1 copy only, but
1147          now the maximum value seen is used.
1148         
1149        - Relax checks for PCL5 header to accomodate some strange
1150          printer drivers.
1151         
1152        - Now hardware accounting method works like software
1153          accounting method wrt the subprocess' output.
1154         
1155        - Hardware and Software accounting stop the print queue 
1156          when the accounting subprocess didn't work. This will
1157          be configurable in the near future.
1158         
1159    - 1.20alpha2 :
1160   
1161        - Now software accounting method reads accounter's
1162          answer until a line with a single integer is
1163          obtained or until all of its output has been read.
1164          This should fix the problem some people have
1165          when strange locale related messages are sent
1166          when running subprocesses (Solaris only ?).
1167         
1168        - First version of ESC/P2 analyzer. Seems to work
1169          ok at least with 'epson', 'epsonc', 'eps9mid'
1170          and 'esp9high' ghostscript devices. Needs more
1171          work to correctly analyze other devices.
1172       
1173    - 1.20alpha1 :
1174   
1175        - Fixed problem with number of copies in PCLXL parser.
1176       
1177        - Fixed problem with number of copies in PCL5 parser,
1178          when number of copies was set outside of and before first
1179          page.
1180       
1181        - Added workaround for number of copies directly set in
1182          PostScript code.
1183         
1184        - Added german translation.
1185       
1186        - Fixed problem on first print for user group quota when
1187          "enforcement: strict" is used.
1188       
1189        - Fixed interpolation problem in french translation.
1190       
1191    - 1.19 :
1192   
1193        - Updated existing translations.   
1194       
1195        - Added final Thai and Greek translations.
1196       
1197        - Minor last minute bug fixes.
1198       
1199    - 1.19beta :
1200   
1201        - LPRng support for both software and hardware accounting seems
1202          to be OK.
1203         
1204        - Translation files fixed because of fuzzy matching problem. 
1205       
1206        - Fixed path to Swedish translation: 'sv' instead of 'se'.
1207       
1208        - Added first draft of Thai translation.
1209       
1210        - Fixed some minor bugs with Pychecker.
1211       
1212    - 1.19alpha35 :
1213   
1214        - Generic PDL analyzer now supports Binary PostScript documents
1215          in addition to DSC compliant ones.
1216       
1217    - 1.19alpha34 :
1218   
1219        - LPRng support : software accounting seems to work fine,
1220          but hardware accounting doesn't work yet.
1221   
1222    - 1.19alpha33 :
1223   
1224        - pykosd now accepts command line arguments. Enjoy !
1225          NB : due to a bug in xosd, you need xosd version 2.2.8
1226          or higher if you don't use the default C locale.
1227         
1228    - 1.19alpha32 :
1229   
1230        - Early (not working) version of the LPRng support rewrite.
1231       
1232        - Saner default configuration file.
1233       
1234    - 1.19alpha31 :
1235   
1236        - Fixed a double Python2.1 incompatibility with newer versions,
1237          which prevented the PCL5 and the PCLXL parsers to work with
1238          this older version of Python.
1239         
1240    - 1.19alpha30 :
1241   
1242        - Introduction of preliminary version of the pykosd command
1243       
1244        - Usernames, Groupnames and Printernames can now contain
1245          ANY character, expected '/' and '@'.
1246       
1247        - Integrated most of the Debian work from Sergio
1248          Gonz�z Gonz�z
1249         
1250    - 1.19alpha29 :
1251   
1252        - PCLXL parser should now correctly handle number of
1253          copies set for each page.
1254         
1255        - Added testsuite for generic PDL analyzer.
1256       
1257        - Typo fixed in PCLXL parser.
1258       
1259        - Correctly dispatches error messages depending on the
1260          situation : tools which can be run interactively will
1261          ALWAYS output their logs to stderr, excepted for
1262          their DEBUG messages, for which the "logger:"
1263          directive as set in pykota.conf will be honored.
1264          Tools which can't be run interactively will ALWAYS
1265          honor the "logger:" directive as set in pykota.conf
1266         
1267    - 1.19alpha28 :
1268   
1269        - The description field for printers can now be set,
1270          and is displayed in reports.
1271         
1272        - Fixed a small problem in SQL backend code.
1273         
1274        - Improved pkhint
1275       
1276        - First working PCL6 (aka PCLXL) parser !
1277          Doesn't handle copies yet.
1278       
1279    - 1.19alpha27 :
1280   
1281        - Additionnal 10% speed increase in PCL5 parser for GhostScript
1282          generated files (untested yet with other PCL files).
1283         
1284        - Reintroduced the use of mmap in PCL5 parser : this speedups
1285          PCL5 parsing by almost 4 times.
1286          This 4x with the 3x below give us in fact a twelvefold increase
1287          in performance for PCL5 parsing !
1288         
1289        - The Python accelerator Psyco is now used if available
1290          in the generic PDL parser : it speedups PCL5 parsing by
1291          almost three times automagically.
1292         
1293    - 1.19alpha26 :
1294   
1295        - Fixed PCL5 parser according to the sources of rastertohp.
1296       
1297        - Fixed number of copies handling in PCL5 parser : the number
1298          of copies could vary from page to page.
1299         
1300        - Added more debug information to PCLXL parser. 
1301       
1302    - 1.19alpha25 :
1303   
1304        - Added new "description" field to printers in both
1305          PostgreSQL and LDAP. No code to handle this yet.
1306         
1307        - Reversed the fix for power save mode in printers : 
1308          no paper or tray open would have caused people to
1309          be undercharged.
1310         
1311        - Preliminary version of MySQL initialization script.
1312         
1313    - 1.19alpha24 :
1314   
1315        - Native PDF parsing code now works perfectly with
1316          Python 2.1 and above, and is way faster than before.
1317          GhostScript is not used anymore to convert PDF to PS,
1318          because PDF is parsed directly.
1319         
1320    - 1.19alpha23 :
1321   
1322        - Fixed waitprinter.sh wrt PowerSave mode and some
1323          printers. Thanks to Ryan Suarez.
1324       
1325        - Smart PDL analyzer now recognizes PDF too : two
1326          PDF parsing methods are used : a native one which
1327          is very fast but requires Python 2.3 or above, and
1328          a slower one which uses Ghostscript. PyKota detects
1329          automatically which method to use depending on your
1330          version of Python.
1331       
1332        - All tracebacks now include PyKota's version number.
1333         
1334    - 1.19alpha22 :
1335   
1336        - Ensures that the file pointer for job's data is
1337          reset to the start of the job's datas after the
1338          job's size pre-computation phase.
1339         
1340        - Improved PostScript detection code for bad drivers
1341          which don't correctly switch languages between PJL
1342          and PS.
1343       
1344        - Even better debugging code.
1345       
1346    - 1.19alpha21 :
1347   
1348        - Additionnal check.
1349       
1350    - 1.19alpha20 :
1351   
1352        - More complete logging messages wrt accounters.
1353       
1354        - Now catches early failures occuring when the configuration
1355          files are parsed.
1356       
1357    - 1.19alpha19 :
1358   
1359        - Fixed over-verbose exits when displaying help
1360          or version.
1361         
1362        - Extended some PATH in the shell scripts 
1363       
1364        - Deleting an user now also deletes his payments history.
1365       
1366        - Doesn't explicitely ignore SIGCHLD anymore. This seems to
1367          cause problems.
1368
1369    - 1.19alpha18 :
1370   
1371        - History of payments is now stored in the database, and
1372          updated each time an user's balance is modified with
1373          edpykota --balance. This history represents each time
1374          the user was given some positive or negative credit,
1375          but doesn't reflect price paid for jobs, which appear
1376          in the jobs history instead.
1377         
1378        - Jobs history web reports now include the job's size in
1379          bytes. Also columns were reordered to render the report
1380          more easily readable.
1381         
1382    - 1.19alpha17 :
1383   
1384        - Mysterious bug (program exited unexpectedly without leaving
1385          any log message) which occured once in a while when
1386          cancelling jobs should be fixed now.
1387         
1388        - New 'crashrecipient' directive. Disabled by 
1389          default. See sample configuration file to see how
1390          to activate it. It is suggested that you activate it.
1391         
1392        - New PYKOTAJOBSIZEBYTES environment variable exported, 
1393          which contains the job's size in bytes. Empty jobs
1394          are now denied. This value is now stored in the job
1395          history (but not yet displayed from the web interface)
1396         
1397        - Preliminary work on payments storage : the PostgreSQL 
1398          and LDAP schemas should be OK now, but no code is written
1399          yet to support this functionnality.
1400         
1401    - 1.19alpha16 :
1402   
1403        - the newuser and newgroup LDAP specific directives now accept
1404          a second parameter to attach(), "fail" or "warn". If no entry
1405          is found to attach PyKota attributes to, and "fail" was used,
1406          then action is aborted and program exits in error. If "warn"
1407          is used, a new entry is created but a warning message is logged.
1408         
1409        - The job's originating hostname is now stored in the database,
1410          and exported as PYKOTAJOBORIGINATINGHOSTNAME in the environment.
1411       
1412    - 1.19alpha15 :
1413   
1414        - The old pykota filter is now removed. This means that
1415          currently PyKota doesn't support LPRng anymore, but
1416          LPRng support will be re-added, improved, in the near future.
1417         
1418    - 1.19alpha14 :
1419   
1420        - PYKOTAPRECOMPUTEDJOBSIZE and PYKOTAPRECOMPUTEDJOBPRICE
1421          are now exported as environment variables.
1422         
1423        - Heavy CPU usage is now completely fixed it seems, by
1424          introducing some 0.01 second sleeping when nothing to do.
1425         
1426        - Pre-computation of the job's size is now only
1427          done when enforcement is "STRICT", this saves
1428          CPU for people who don't want to use this new
1429          feature.
1430         
1431        - New 'enforcement' directive which accepts either
1432          STRICT or LAXIST. See sample configuration file
1433          for details.
1434         
1435    - 1.19alpha13 :
1436   
1437        - Get back to an old version of the polling loop which
1438          worked fine, but non-optimally. Will be optimized
1439          as time permits.
1440         
1441    - 1.19alpha12 :
1442   
1443        - Job's size is now precomputed unconditionnally using
1444          the generic PDL analyzer.
1445          NB : This value is not yet used to pre-allow/deny the
1446          job.
1447       
1448    - 1.19alpha11 :
1449   
1450        - The pykota filter is now completely deprecated and
1451          can't be used anymore. LPRng users MUST download
1452          an older version of PyKota. CUPS users MUST use
1453          cupspykota. Better support for LPRng will come
1454          in the near future.
1455         
1456    - 1.19alpha10 :
1457   
1458        - pykotme now uses generic PDL Analyzer directly instead
1459          of spawning a new process.
1460         
1461        - Improvements to generic PDL Analyzer.
1462       
1463        - 25% Speedup in PCL parser. Getting more of the Python version
1464          will probably be difficult, since the completely table driven
1465          parser I wrote is slower than the original algorithm. Then,
1466          the original algorithm is still used for now.
1467          Probable that more speed could be achieved using mmap, at the
1468          expense of severe memory consumption.
1469       
1470        - configuration simplifications : the "accounter" directive's
1471          'hardware' arguments now accepts what was in the "requester"
1472          directive as it's content. The "requester" directive is not
1473          supported anymore. See sample configuration file for details.
1474       
1475    - 1.19alpha9 :
1476       
1477        - pkpgcounter is now just a wrapper around the PDLAnalyzer class
1478       
1479        - pykotaOptions LDAP attribute now accepts non-ascii characters
1480          too.
1481         
1482        - First try at cupspykota main loop rewrite
1483       
1484    - 1.19alpha8 :
1485   
1486        - 'querying' accounting method is now called 'hardware'
1487       
1488        - 'external' accounting method is now called 'software'
1489       
1490        - 'stupid' accounting method doesn't exist anymore
1491       
1492        - 'snmp' requester doesn't exist anymore
1493       
1494        - code simplifications in external requester
1495       
1496    - 1.19alpha7 :
1497     
1498        - Database schema change (both LDAP and PostgreSQL) to
1499          allow storage of the job-originating-hostname attribute.
1500          An SQL upgrade script is present. The code is not yet
1501          capable of setting/retrieving this attribute. Support
1502          for this functionnality will be added in the future.
1503         
1504    - 1.19alpha6 :
1505   
1506        - problems connecting to SMTP servers are now catched.
1507       
1508        - pykotme now uses pkpgcounter to compute the size of the
1509          job. This modification adds PCL5 and soon PCLXL (PCL6)
1510          support. You can now get quotes for PCL in addition to
1511          PostScript.
1512         
1513        - pkpgcounter now includes first try at PCLXL parser. 
1514          It is currently disabled until it's finished.
1515         
1516    - 1.19alpha5 :
1517   
1518        - cupspykota polling loop fix for MacOSX (at least)
1519       
1520        - logging subsystem now logs PID too, to ease diagnosing
1521          problems under heavy load.
1522         
1523        - pkpgcounter enhancements.
1524       
1525        - pkprinters --skipexisting now tells pkprinters to not
1526          modify existing printers when --add is used.
1527          pkprinters logs a warning message whenever --add is
1528          used and a printer already exists.
1529         
1530        - LDAP schema now allows accented chars in pykotaFileName
1531          and pykotaTitle attributes.
1532       
1533    - 1.19alpha4 :
1534   
1535        - a bad copy&paste prevented pkpgcounter to work at all, this
1536          is now fixed.
1537         
1538        - improved PCL support in pkpgcounter, with the use of
1539          HP PCL/PJL Reference Set
1540          PCL5 Printer Language Technical Quick Reference Guide
1541       
1542        - pkpgcounter now uses mmap to speed things up : duration
1543          is halved with the sample 87 pages PCL document I use for
1544          testing.
1545         
1546    - 1.19alpha3 :
1547   
1548        - pkprinters now accepts the --list command line argument
1549          to list informations about printers.
1550         
1551    - 1.19alpha2 :
1552   
1553        - pkpgcounter is now included as a smart external
1554          accounter which can handle both PostScript and PCL.
1555         
1556    - 1.19alpha1 :
1557   
1558        - PYKOTALIMITBY environment variable is now exported too.
1559       
1560        - Inclusion of Michele Baldessari's work on autotools.
1561       
1562    - 1.18 :
1563   
1564        - Improved documentation
1565       
1566    - 1.18beta2 :
1567     
1568        - Fix for raw jobs with cupspykota
1569       
1570    - 1.18beta :
1571   
1572        - Small fix for new waitprinter.sh script
1573       
1574        - Better tracebacks on error conditions
1575       
1576        - Improved translations
1577       
1578        - Improved documentation
1579       
1580    - 1.18alpha15 :
1581
1582        - waitprinter.sh replaced by a new and possibly faster
1583          and more powerful one.
1584   
1585        - Names can now begin with a digit.
1586       
1587        - Stability improvement for quotas set on printers groups.
1588       
1589    - 1.18alpha14 :
1590   
1591        - Catches more (all ?) problems with SMTP servers instead
1592          of breaking.
1593         
1594        - Italian translation added.
1595       
1596    - 1.18alpha13 :
1597   
1598        - Pre and Post hooks are now available in the pykota
1599          filter as well.
1600         
1601        - The pykota filter doesn't check last user's quota
1602          anymore when delayed hardware accounting is used :
1603          this will be done anyway the next time the last
1604          user will print again. This saves some database
1605          queries which are unneeded.
1606       
1607    - 1.18alpha12 :
1608   
1609        - Pre and Post hooks to external commands with many
1610          many environment variables available are useable
1611          from the cupspykota backend.
1612          See sample configuration file for details and help.
1613         
1614    - 1.18alpha11 :
1615   
1616        - Hopefully final fix wrt groups (users and printers)
1617       
1618    - 1.18alpha10 :
1619   
1620        - Fixed nested printer groups accounting.
1621       
1622        - Fixed user groups + printer groups problem.
1623       
1624    - 1.18alpha9 :
1625   
1626        - Fix for LDAP problem when job price was 0.
1627       
1628        - Fix for empty user groups with LDAP.
1629       
1630        - Preliminary version of the snmpprinterstatus command added.
1631       
1632    - 1.18alpha8 :
1633   
1634        - Don't retrieve data when not needed.
1635          This avoids many database queries.
1636       
1637    - 1.18alpha7 :
1638   
1639        - New experimental ldapcache directive to improve
1640          LDAP caching.
1641         
1642    - 1.18alpha6 :
1643       
1644        - New configuration directive added : maildomain
1645          to specify the domain to send mail to when user
1646          email address is not set in PyKota database.
1647         
1648        - More complete email message headers. 
1649         
1650    - 1.18alpha5 :
1651   
1652        - Debian packaging specific files, contributed by
1653          Peter Hawkins are now included in the project's tree.
1654         
1655        - Preliminary work on future low-level LDAP caching to speed
1656          up modifications (at least).
1657         
1658    - 1.18alpha4 :
1659   
1660        - Applied some of the modifications suggested by
1661          Peter Hawkins, for better Debian integration.
1662          Most notably cupspykota, pykota, and the shell
1663          scripts are now installed into /usr/share/pykota
1664          instead of into /usr/bin
1665          BEWARE : double check that your symbolic link
1666          to cupspykota is correct, and that your pykota.conf
1667          file use correct path for the shell scripts like
1668          waitprinter.sh and al.
1669         
1670        - pkhint command added, to help in configuring correct
1671          accounting method for PyKota.
1672         
1673    - 1.18alpha3 :
1674   
1675        - Fixed a rare bug in cupspykota backend which gave
1676          incorrect "CUPS backend died abnormally" messages.
1677       
1678    - 1.18alpha2 :
1679   
1680        - Added the pkprinters command line tool to manage printers
1681          exclusively.
1682       
1683    - 1.18alpha1 :
1684   
1685        - Preliminary work on Relationnal Database Independance.
1686       
1687        - Sample report made from OpenOffice.org added as PDF and SXC.
1688       
1689    - 1.17 :
1690   
1691        - Finalized release.
1692       
1693    - 1.17alpha2 :
1694   
1695        - Fix stupid software accounting bug in the CUPS backend.
1696       
1697    - 1.17alpha1 :
1698   
1699        - User/Group deletion code in edpykota rewritten.
1700       
1701    - 1.16 :
1702   
1703        - Preliminary documentation on how to use OpenOffice.org
1704          to create personnalized reports for PyKota + PostgreSQL.
1705         
1706        - Spanish installation guide for CUPS+PyKota+PostgreSQL
1707          added to the documentation. Doesn't yet document v1.16
1708          though.
1709       
1710        - Portuguese Portuguese translation replaces Brazilian
1711          Portuguese Translation. Brazilian portuguese
1712          translation is still available under the 'br' locale.
1713       
1714    - 1.16beta3 :
1715   
1716        - Swedish translation added.
1717       
1718        - Small fix in documentation.
1719       
1720    - 1.16beta2 :
1721   
1722        - Small fix for job cancelling code while job already
1723          printing in CUPS backend.
1724         
1725        - Big fix wrt printing policies for unknown users. 
1726       
1727    - 1.16beta1 :
1728   
1729        - Manpages upgraded.
1730       
1731    - 1.16alpha26 :
1732   
1733        - Job price is now computed like this :
1734       
1735          SUM((NbPages * PricePerPage) + PricePerJob)
1736         
1737          For current printer and all the printers groups it is
1738          a member of, if any.
1739         
1740          This may be difficult to grasp, but offers unprecedented
1741          flexibility.
1742         
1743    - 1.16alpha25 :
1744   
1745        - Email address can be set at user creation time,
1746          using the following syntax :
1747         
1748            $ edpykota --add username/email@yourdomain.com
1749       
1750    - 1.16alpha24 :
1751   
1752        - CGI script now can show the printing history.
1753       
1754        - Bug wrt number of copies should be fixed.
1755       
1756        - Major code refactoring => It is now possible to
1757          automatically add printers on first print.
1758       
1759    - 1.16alpha23 :
1760   
1761        - Fixed potential accuracy problem if a user printed on
1762          several printers at the very same time.
1763       
1764    - 1.16alpha22 :
1765   
1766        - edpykota now allows adding printers to printer groups
1767       
1768    - 1.16alpha21 :
1769   
1770        - Allows the dot in user and printer names.
1771       
1772        - Printer groups are now cached too.
1773       
1774    - 1.16alpha20 :
1775   
1776        - Fixed several small bugs with the help of PyChecker.
1777       
1778    - 1.16alpha19 :
1779     
1780        - Fixed a bug in PostgreSQL backend's code.
1781       
1782    - 1.16alpha18 :
1783   
1784        - Initial code for printer groups support. Printer groups have
1785          to be added with external tools like psql or gq for example.
1786          Printer groups seems to work fine with users. Untested with user
1787          groups for now.
1788
1789        - Several minor visual problems fixed in reports.
1790       
1791        - Fixed a bug in LDAP date handling.
1792       
1793        - Fix for LDAP problem with some combination of OpenLDAP + Python-LDAP
1794          + some particular settings.
1795         
1796        - mailandpopup.sh shell script added. See sample configuration file
1797          for details.
1798       
1799        - Several environment variables are now exported when executing
1800          external commands (accounters, requesters, mailers) :
1801           
1802            PYKOTAUSERNAME => user who is printing
1803            PYKOTAPRINTERNAME => printer on which the job is being sent
1804            PYKOTATITLE => Job's title
1805            PYKOTAFILENAME => Job's filename
1806            PYKOTACOPIES => number of copies asked
1807            PYKOTAOPTIONS => print command options (-o with CUPS)
1808         
1809    - 1.16alpha17 :
1810   
1811        - Added portugues translation.
1812       
1813        - Major code refactoring in accounters.
1814       
1815    - 1.16alpha16 :
1816   
1817        - Code refactoring, and addition of a real HTML reporter, to
1818          have nice looking and useful web based reports (in the future).
1819       
1820        - Added utolower configuration option to convert all usernames
1821          to lowercase during printing.
1822         
1823    - 1.15alpha15 :
1824   
1825        - Now includes the papwaitprinter.sh shell script to wait for
1826          AppleTalk enabled printers.
1827         
1828    - 1.16alpha14 :
1829   
1830        - Now printing on a printer not defined in the Quota Storage,
1831          results in the job being cancelled or stopped, depending
1832          on the printing system.
1833         
1834    - 1.16alpha13 :
1835   
1836        - Small bugfix wrt Python v2.1
1837       
1838        - If username is an empty string, user root is assumed.
1839       
1840        - 'postgresql' is not recognized anymore as a storage backend,
1841          you have to use 'pgstorage' instead. 'postgresql' used to
1842          be supported for compatibility with very old PyKota versions,
1843          this is not the case anymore.
1844         
1845    - 1.16alpha12 :
1846   
1847        - Job price added to job history, to keep accounting correct
1848          if a printer price per page or per job is modified and the
1849          history is not reset : the history would have given a false
1850          amount of money charged before the printer's prices were
1851          modified, this addition solves the problem.
1852         
1853    - 1.16alpha11 :
1854   
1855        - Some preliminary modifications to the database structure for
1856          PostgreSQL and OpenLDAP. A script to upgrade a PostgreSQL
1857          database is now provided. LDAP attributes now support
1858          eq, pres and sub indexes.
1859         
1860        - Job history now contains additional informations : 
1861          number of copies, filename, title and print options.
1862         
1863    - 1.16alpha10 :
1864       
1865        - Some modifications done to external policy handling.
1866          See sample configuration file for details.
1867   
1868        - Spanish translation added.
1869       
1870    - 1.16alpha9 :
1871   
1872        - mailto can be set to external(...) to warn users above
1873          quota with any command of your choice (e.g. linpopup).
1874          Several parameters are available, see sample configuration
1875          file for details.
1876         
1877    - 1.16alpha8 :
1878   
1879        - Now cupspykota transmits SIGTERMS to the original 
1880          backend when the user deletes a job being processed.
1881         
1882        - The documentation is now licensed under the terms of the
1883          GNU GPL too.
1884         
1885    - 1.16alpha7 :
1886   
1887        - The CUPS backend is now fully functionnal (it seems).
1888       
1889        - From now on, the use of the pykota filter with CUPS
1890          is deprecated. The pykota filter still has to be
1891          used with LPRng though.
1892       
1893    - 1.16alpha6 :
1894   
1895        - Bug fixed : when edpykota was used to add a printer
1896          with no user or group name, a bad user/group name "*" was
1897          added to the database.
1898         
1899    - 1.16alpha5 :
1900   
1901        - New CUPS backend supports device enumeration !
1902          This means that NO manual CUPS configuration has to
1903          be done. All can now be done from CUPS web interface.
1904       
1905    - 1.16alpha4 :
1906   
1907        - New CUPS backend added.
1908       
1909    - 1.16alpha3 :
1910       
1911        - Minimal FAQ document added.
1912       
1913    - 1.16alpha2 :
1914   
1915        - CGI script now partially supports browser's language preference
1916       
1917    - 1.16alpha1 :
1918   
1919        - Ensures that the LDAP connection is really closed at end.
1920       
1921        - More complete error messages in case of LDAP operation failure.
1922       
1923    - 1.15 :
1924     
1925        - Documentation improved.
1926       
1927    - 1.15beta :
1928   
1929        - Command line tools now accept multiple printer
1930          names or wildcards, separated with commas.
1931         
1932    - 1.15alpha9 :
1933   
1934        - External policy can be used to auto-add unknown users
1935          and any other interesting things you may want to do.
1936          WARNING : You can't auto-add printers for now.
1937          They have to be created manually before.
1938          Look at sample configuration file for examples.
1939         
1940    - 1.15alpha8 :
1941   
1942        - Job history can be disabled if needed.
1943          This feature may be useful for people who use the LDAP
1944          backend and don't want their LDAP tree to grow out of
1945          control.
1946       
1947    - 1.15alpha7 :
1948   
1949        - More work done on caching wrt groups.
1950       
1951    - 1.15alpha6 :
1952   
1953        - Performance bottleneck with LDAP solved.
1954       
1955    - 1.15alpha5 :
1956   
1957        - Caching mechanism for all database queries.
1958
1959    - 1.15alpha4 :
1960   
1961        - Problem with Python 2.3 fixed. Needs some definitive
1962          modification.
1963         
1964    - 1.15alpha3 :
1965   
1966        - CGI script now tries to restrict view when the
1967          REMOTE_USER environment variable is set. This allows
1968          people to protect its use with .htaccess files.
1969          When unprotected, or if REMOTE_USER is 'root', then
1970          unrestricted access is granted.
1971          NB : REMOTE_USER is automatically set by the web server
1972          (e.g. Apache) when a page with restricted access is viewed.
1973         
1974    - 1.15alpha2 :
1975   
1976        - Better detection of LPRng.
1977       
1978        - Outputs a warning if printing system is unknown.
1979       
1980    - 1.15alpha1 :
1981   
1982        - Bug fix in SQL code.
1983       
1984    - 1.14 :
1985   
1986        - The PostgreSQL database connection is now always closed before
1987          exit. The LDAP database connection too, but it didn't suffer
1988          from the problem anyway, AFAICT.
1989       
1990    - 1.14beta2 :
1991   
1992        - An LDAP-specific configuration field was introduced, usermail.
1993          Use it to specify which LDAP attribute contains a valid email
1994          address for the user. See sample configuration file for
1995          details.
1996       
1997    - 1.14beta :
1998   
1999        - Two new LDAP-specific configuration fields were introduced,
2000          newuser and newgroup. Use them to specify if you want to add
2001          quota information to existing entries or elsewhere.
2002          See sample configuration file for details.
2003         
2004    - 1.14alpha9 :
2005   
2006        - Documentation improved.
2007       
2008        - pykotme now also prints the user's account balance value
2009          if the user is registered in the Quota Storage and his
2010          limiting factor is "balance".
2011         
2012    - 1.14alpha8 :
2013   
2014        - bin/waitprinter.sh is now included to wait for
2015          SNMP enabled printers to be idle again before
2016          asking for their internal page counter.
2017          See sample configuration file for details.
2018         
2019    - 1.14alpha7 :
2020   
2021        - edpykota now doesn't check if the user/group is above
2022          quota. The check is only done at print time. This
2023          prevents the sending of email messages when creating
2024          user quotas if quota is already reached at creation
2025          time.
2026         
2027    - 1.14alpha6 :
2028   
2029        - Configuration file split and moved to /etc/pykota/pykota.conf
2030          and /etc/pykota/pykotadmin.conf to prevent simple users to
2031          have Read/Write access to the Quota Database.
2032          Don't forget to :
2033         
2034                $ chmod 640 /etc/pykota/pykotadmin.conf
2035               
2036        - storageuser and storageuserpw configuration fields reintroduced
2037          for the same reason.
2038         
2039        - Code cleaning for future implementation of email addresses
2040          support in the PostgreSQL and LDAP backends.
2041         
2042    - 1.14alpha5 :
2043       
2044        - Big bug fixed when changing the prices for a printer
2045       
2046    - 1.14alpha4 :
2047   
2048        - When adding an user, the user itself and its account balance
2049          are now added in the same LDAP entry. Before they were added
2050          as two different LDAP entries.
2051         
2052    - 1.14alpha3 :
2053   
2054        - Email field added to PostgreSQL database. An upgrade script
2055          is included in initscripts/postgresql.
2056       
2057    - 1.14alpha2 :
2058   
2059        - Typo fixed when using the --prototype option to edpykota
2060       
2061    - 1.14alpha1 :
2062   
2063        - Poor man's treshold included : users with a low account
2064          balance (below 1.0 by default, configurable) are sent
2065          a warning message.
2066         
2067        - All warning messages to users are now configurable. 
2068          NB : Warning messages to the administrator are not.
2069       
2070    - 1.13 :
2071   
2072        - Some small fixes wrt group handling.
2073       
2074        - The whole module code was passed through PyChecker and
2075          several small code inconsistencies were fixed,
2076          as well as a bug in the groups code.
2077         
2078    - 1.13alpha1 :
2079   
2080        - Bug fix wrt LDAP.
2081       
2082    - 1.12 :
2083   
2084        - More complete test added in edpykota.
2085       
2086    - 1.12alpha2 :
2087   
2088        - The previous bug fix was incomplete. This is corrected.
2089       
2090    - 1.12alpha1 :
2091   
2092        - Small bug fix.
2093       
2094    - 1.11 :
2095   
2096        - Now includes the pykotme command line tool, to produce
2097          printing quotes for users.
2098         
2099    - 1.10 :
2100   
2101        - Bug fixed wrt quota reports when print limiting is by
2102          account balance.
2103         
2104    - 1.09 :
2105   
2106        - Translations finalized.
2107       
2108        - Manpages updated.
2109       
2110        - Installation documentation improved wrt LDAP support.
2111       
2112    - 1.09beta2 :
2113   
2114        - The CGI script for quota reports works again, and
2115          is much more powerful.
2116       
2117    - 1.09beta :
2118   
2119        - edpykota finalized
2120       
2121    - 1.09alpha2 :
2122   
2123        - LDAP schema modified a bit. Please upgrade.
2124       
2125        - LDAP backend works !
2126       
2127        - repykota and warnpykota allow the root user to pass
2128          users or groups names on the command line. Users
2129          and groups names may contain wildcards.
2130         
2131        - repykota and warnpykota only reports or warns the
2132          current user when launched by non-root users.
2133         
2134        - Minor bug fixes. 
2135   
2136    - 1.09alpha1 :
2137   
2138        - More work on LDAP storage backend. Many options
2139          were added to /etc/pykota.conf to give some
2140          hints to the LDAP storage backend.
2141         
2142        - Severe database access optimizations were done by
2143          rewriting most of the Quota Storage backends drivers.
2144     
2145    - 1.08 :
2146   
2147        - Major bug fix wrt LPRng support for remote jobs.
2148       
2149        - Major bug fix wrt increase/decrease account balances.
2150       
2151    - 1.08alpha8 :
2152   
2153        - Code refactoring.
2154       
2155        - A single user/password pair is used to connect
2156          to the database backend. The storageuser configuration
2157          field, and its associated passwords storageuserpw, are
2158          not used anymore.
2159         
2160        - You can now set PyKota in debug mode, see sample configuration 
2161          file for details.
2162          WARNING : only Quota Storage backend queries are logged in
2163          debug mode, for now.
2164       
2165    - 1.08alpha7 :
2166   
2167        - Very latest LDAP schema.
2168       
2169        - Code enhancement wrt easy pluggability of PyKota attributes
2170          and object classes into an existing LDAP directory.
2171       
2172    - 1.08alpha6 :
2173   
2174        - Minor bug corrections
2175       
2176        - More work on LDAP : new schema
2177       
2178    - 1.08alpha5 :
2179   
2180        - More good work on LDAP storage.
2181          repykota now works reasonably well with the sample LDAP directory.
2182       
2183    - 1.08alpha4 :
2184   
2185        - LDAP schema included.
2186          THIS IS JUST FOR PEOPLE TO DISCUSS ABOUT THIS.
2187          LDAP SUPPORT DOESN'T WORK YET, AND THE SCHEMA
2188          MAY CHANGE IN THE FUTURE. PLEASE TELL US
2189          WHAT YOU THINK ABOUT THIS SCHEMA ON THE
2190          MAILING LIST.
2191         
2192    - 1.08alpha3 :
2193   
2194        - External accounting methods were partly rewritten :
2195         
2196          - No more "broken pipe" should happen.
2197         
2198          - They now take care of the number of copies
2199            This may be unneeded though, if the postscript
2200            file already does this, because this would
2201            overcharge users (number of copies counted
2202            two times). NEEDS MORE TESTING.
2203           
2204          - The sample configuration file now contains 
2205            an external accounting method example which should
2206            work with all DSC compliant Postscript files.
2207           
2208        - Some small bugs were fixed.   
2209       
2210    - 1.08alpha2 :
2211   
2212        - Now works with net-snmp v5.0 and above.
2213          It already worked, but the sample configuration
2214          file didn't contain appropriate values...
2215       
2216    - 1.07 : Release of the Shame !
2217   
2218        - The external accounting methods driver was left out of
2219          the CVS tree. Nobody could use it since it wasn't included !
2220         
2221    - 1.06 :
2222   
2223        - Severe bug fixed : if you had a printer in
2224          power saving state which couldn't answer immediately,
2225          a bug was triggered.
2226          It was caused by a bad copy/paste which
2227          forgot to import a Python module at run time.
2228         
2229    - 1.05 :
2230   
2231        - External accounters are finally available !
2232          This means that you can plug any page accounting
2233          method you like by setting the appropriate
2234          'accounter' field in /etc/pykota.conf
2235          See the sample conf/pykota.conf.sample to
2236          learn how to do.
2237         
2238          NB : Both 'external' and 'stupid' accounting methods
2239               account a job size just before *this* job is
2240               sent to the printer.
2241               The original 'querying' method accounts a job
2242               size just before *the next* job is sent to
2243               the printer.
2244       
2245    - 1.05alpha3 :
2246   
2247        - A 'stupid' and unreliable accounting method was
2248          implemented to serve as an example on how to
2249          do this sort of things. This method only counts
2250          the 'showpage' statements in the input data.
2251          See sample configuration file for details.
2252          Pluggable accounting methods work, but I advise
2253          you TO NOT USE THIS ONE WHICH IS JUST AN EXAMPLE.
2254          It is not reliable enough to be used.
2255          Use the 'querying' accounting method instead.
2256         
2257    - 1.05alpha2 :
2258   
2259        - Pluggable accounting methods.
2260       
2261        - Better error handling.
2262       
2263    - 1.05alpha1 :
2264   
2265        - SECURITY file added to help improve PyKota's security.
2266       
2267        - Extracting the printer's internal page counter is now
2268          tried several times, waiting several seconds between
2269          two tries. This lets the time to warm up for some printers
2270          which don't answer when they are sleeping (my Apple
2271          LaserWriter 16/600 PS is in this case, maybe others too)
2272         
2273        - Small display bug fixed in repykota
2274         
2275    - 1.04 :
2276   
2277        - Default print policy for users/groups unknown from
2278          the print quota system is now DENY instead of ALLOW,
2279          since ALLOW can generate inaccurate results
2280          (incorrect job sizes charged to the wrong persons)
2281         
2282        - LPRng support works !
2283       
2284        - A bug was introduced some time ago wrt printers' default
2285          policy for unknown users. It is now corrected.
2286       
2287        - repykota now displays prices per job and per page for each
2288          printer, if they are defined.
2289         
2290        - Minor display bug fixed in repykota.
2291       
2292        - Problem when running repykota with an empty database was fixed.
2293       
2294    - 1.03 :
2295   
2296        - Upgrade script included for earlier versions.
2297          Please look inside the initscripts subdirectory.
2298          THE DATABASE SCHEMA HAS CHANGED, PLEASE UPGRADE.
2299         
2300        - repykota now reports account balances too.
2301       
2302        - PyKota now has a nice logo, see the logos
2303          subdirectory.
2304       
2305        - Manual pages were finally updated.
2306       
2307        - Group quotas seem to work now !
2308       
2309        - The new database schema allows to keep an history of all
2310          jobs as well as charge users per page and/or per job,
2311          and track users' account balance.
2312         
2313        - edpykota now accepts much more command line options to 
2314          use the new functionnalities. See edpykota --help for
2315          details.
2316         
2317        - The installation script now allows to install the sample
2318          configuration file during first installation.
2319         
2320        - More group quota code works, but still not finished. 
2321       
2322        - The CGI script displays a link to PyKota's website.
2323       
2324        - The job history is now kept, this will allow per-period
2325          reports in the future.
2326         
2327        - After having modified the quota for an user with edpykota,
2328          a quota check is done to eventually warn the user/admin about
2329          a quota which is too low to print.
2330         
2331        - A workaround is provided for HP Printers : their internal
2332          page counter is only saved to NVRAM in a 10 increment, so
2333          if you switch them off and then on, the reported page counter
2334          may be lower than the real number of pages printed.
2335          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
2336          We unconditionnally set the last job's page count to
2337          abs(int((10 - abs(lastcounter(snmp) - lastcounter(storage)) / 2))
2338          in this case.
2339          For a more accurate accounting, never switch your HP printers
2340          off.
2341         
2342        - A fix is provided for printers which only have a volatile 
2343          page counter (reset to 0 every time you switch the printer on)
2344          This should allow PyKota to work reasonably fine with HP Laserjet
2345          4L/5L/6L, not perfect, but better than nothing.
2346          See http://web.mit.edu/source/third/lprng/doc/LPRng-HOWTO-15.html
2347          For a more accurate accounting, never switch your HP printers
2348          off. This is untested, please report any problem.
2349         
2350        - A bug was fixed when edpykota --add was used with users who already
2351          had a quota on the specified printer.
2352         
2353        - A small display bug in repykota was introduced in preliminary
2354          1.03 versions, and fixed later on.
2355         
2356        - Some minor bugs which happened in rare situations were fixed.
2357       
2358        - Support for AppleTalk printers was added, see sample configuration
2359          file for details.
2360         
2361        - Users and group printing can now be controlled (limited) either by 
2362          print quota or by account balance.
2363       
2364    - 1.02 :
2365   
2366        - The installation script now checks for software availability
2367          and in case a software is missing asks the user if he
2368          wants to continue with the installation or abort it.
2369         
2370        - The configuration file pykota.conf is now expected to be
2371          found in /etc instead of in /etc/cups
2372          The installation script prompts the user to see if he
2373          wants to move an old configuration file to the new location
2374          if needed.
2375         
2376        - Improved documentation.
2377       
2378        - You can now set the tcp/ip port on which the Quota Storage
2379          Server is listening, see sample configuration file for details.
2380       
2381        - Better general error handling.
2382       
2383        - Upgrade script for pre 1.01 PostgreSQL database schema is now
2384          included as well.
2385       
2386    - 1.01 :
2387   
2388        - The configuration file now accepts an option   
2389          to choose the recipient(s) of the email messages :
2390         
2391            - DevNull means no one will receive them.
2392            - User means only the user will receive them.
2393            - Admin means only the admin will receive them.
2394            - Both means the User and the Admin will receive them.
2395           
2396        - The configuration file now uses hard-coded default values
2397          when an option is not set. See sample configuration file
2398          for details.
2399         
2400        - Manual pages are included since 1.00, but I forgot to   
2401          add this information to this file.
2402         
2403        - Redistribution terms for the official package have 
2404          softened and are now fully GPL compatible :
2405          unrestricted modification is now allowed even for
2406          the version number.
2407         
2408    - 1.00 :
2409   
2410        - edpykota now accepts a --noquota option. This
2411          disable quota checking while still doing page
2412          accounting. This is really useful for people
2413          who don't want to limit their users but want
2414          to know how much pages they print.
2415         
2416        - Some untested scripts were added to retrieve
2417          the life time page counter of non-SNMP printers.
2418         
2419        - Every directory now has a specific README file. 
2420       
2421    - 0.99 :
2422   
2423        - Under some circumstances while the user wasn't allowed
2424          to print, he didn't receive any email message. It is
2425          now fixed.
2426         
2427        - When an user wasn't allowed to print, the quota for
2428          the previous user wasn't updated. This is now fixed.
2429         
2430    - 0.98 :
2431   
2432        - Correctly handle the case where the printer is switched off.
2433       
2434        - Small bug wrt syslog fixed.
2435       
2436    - 0.97 :
2437   
2438        - edpykota accepts wildcards on its command line for users/groups too
2439          if the --add option is not set, e.g. :
2440         
2441              $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*"
2442             
2443        - If no user name is passed at all, then a default wildcard of "*"
2444          which means apply the command on ALL users for this printer is used.
2445         
2446        - Small bug fixes.
2447       
2448    - 0.96 :
2449
2450        - Options requester, policy, admin, adminmail and gracedelay can now
2451          be set either globally or per printer. The printer option has
2452          priority if both are defined.
2453
2454        - More powerful configuration parser.
2455       
2456        - If all options are defined globally, there's no need to
2457          define a section for each printer in the configuration
2458          file anymore. Just define a [global] section and it's ok.
2459
2460    - 0.95 :
2461
2462        - External requesters for printers finally added.
2463
2464        - Full internationalization (english and french are supported)
2465 
2466        - More complete quota usage report
2467
2468        - CGI script to access to the quota usage report
2469
2470        - Several bugs fixed.
2471
2472
2473    - 0.9 :
2474
2475        - First public version
Note: See TracBrowser for help on using the browser.