1 | # $Id$ |
---|
2 | |
---|
3 | PyKota - Print Quota for CUPS |
---|
4 | |
---|
5 | (c) 2003 Jerome Alet <alet@librelogiciel.com> |
---|
6 | This program is free software; you can redistribute it and/or modify |
---|
7 | it under the terms of the GNU General Public License as published by |
---|
8 | the Free Software Foundation; either version 2 of the License, or |
---|
9 | (at your option) any later version. |
---|
10 | |
---|
11 | This program is distributed in the hope that it will be useful, |
---|
12 | but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
13 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
14 | GNU General Public License for more details. |
---|
15 | |
---|
16 | You should have received a copy of the GNU General Public License |
---|
17 | along with this program; if not, write to the Free Software |
---|
18 | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. |
---|
19 | |
---|
20 | ============================================================ |
---|
21 | |
---|
22 | PyKota NEWS : |
---|
23 | |
---|
24 | - 1.02 : |
---|
25 | |
---|
26 | - The installation script now checks for software availability |
---|
27 | and in case a software is missing asks the user if he |
---|
28 | wants to continue with the installation or abort it. |
---|
29 | |
---|
30 | - The configuration file pykota.conf is now expected to be |
---|
31 | found in /etc instead of in /etc/cups |
---|
32 | The installation script prompts the user to see if he |
---|
33 | wants to move an old configuration file to the new location |
---|
34 | if needed. |
---|
35 | |
---|
36 | - Improved documentation. |
---|
37 | |
---|
38 | - You can now set the tcp/ip port on which the Quota Storage |
---|
39 | Server is listening, see sample configuration file for details. |
---|
40 | |
---|
41 | - Better general error handling. |
---|
42 | |
---|
43 | - Upgrade script for pre 1.01 PostgreSQL database schema is now |
---|
44 | included as well. |
---|
45 | |
---|
46 | - 1.01 : |
---|
47 | |
---|
48 | - The configuration file now accepts an option |
---|
49 | to choose the recipient(s) of the email messages : |
---|
50 | |
---|
51 | - DevNull means no one will receive them. |
---|
52 | - User means only the user will receive them. |
---|
53 | - Admin means only the admin will receive them. |
---|
54 | - Both means the User and the Admin will receive them. |
---|
55 | |
---|
56 | - The configuration file now uses hard-coded default values |
---|
57 | when an option is not set. See sample configuration file |
---|
58 | for details. |
---|
59 | |
---|
60 | - Manual pages are included since 1.00, but I forgot to |
---|
61 | add this information to this file. |
---|
62 | |
---|
63 | - Redistribution terms for the official package have |
---|
64 | softened and are now fully GPL compatible : |
---|
65 | unrestricted modification is now allowed even for |
---|
66 | the version number. |
---|
67 | |
---|
68 | - 1.00 : |
---|
69 | |
---|
70 | - edpykota now accepts a --noquota option. This |
---|
71 | disable quota checking while still doing page |
---|
72 | accounting. This is really useful for people |
---|
73 | who don't want to limit their users but want |
---|
74 | to know how much pages they print. |
---|
75 | |
---|
76 | - Some untested scripts were added to retrieve |
---|
77 | the life time page counter of non-SNMP printers. |
---|
78 | |
---|
79 | - Every directory now has a specific README file. |
---|
80 | |
---|
81 | - 0.99 : |
---|
82 | |
---|
83 | - Under some circumstances while the user wasn't allowed |
---|
84 | to print, he didn't receive any email message. It is |
---|
85 | now fixed. |
---|
86 | |
---|
87 | - When an user wasn't allowed to print, the quota for |
---|
88 | the previous user wasn't updated. This is now fixed. |
---|
89 | |
---|
90 | - 0.98 : |
---|
91 | |
---|
92 | - Correctly handle the case where the printer is switched off. |
---|
93 | |
---|
94 | - Small bug wrt syslog fixed. |
---|
95 | |
---|
96 | - 0.97 : |
---|
97 | |
---|
98 | - edpykota accepts wildcards on its command line for users/groups too |
---|
99 | if the --add option is not set, e.g. : |
---|
100 | |
---|
101 | $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*" |
---|
102 | |
---|
103 | - If no user name is passed at all, then a default wildcard of "*" |
---|
104 | which means apply the command on ALL users for this printer is used. |
---|
105 | |
---|
106 | - Small bug fixes. |
---|
107 | |
---|
108 | - 0.96 : |
---|
109 | |
---|
110 | - Options requester, policy, admin, adminmail and gracedelay can now |
---|
111 | be set either globally or per printer. The printer option has |
---|
112 | priority if both are defined. |
---|
113 | |
---|
114 | - More powerful configuration parser. |
---|
115 | |
---|
116 | - If all options are defined globally, there's no need to |
---|
117 | define a section for each printer in the configuration |
---|
118 | file anymore. Just define a [global] section and it's ok. |
---|
119 | |
---|
120 | - 0.95 : |
---|
121 | |
---|
122 | - External requesters for printers finally added. |
---|
123 | |
---|
124 | - Full internationalization (english and french are supported) |
---|
125 | |
---|
126 | - More complete quota usage report |
---|
127 | |
---|
128 | - CGI script to access to the quota usage report |
---|
129 | |
---|
130 | - Several bugs fixed. |
---|
131 | |
---|
132 | |
---|
133 | - 0.9 : |
---|
134 | |
---|
135 | - First public version |
---|