[797] | 1 | # $Id$ |
---|
| 2 | |
---|
| 3 | PyKota - Print Quota for CUPS |
---|
| 4 | |
---|
| 5 | (c) 2003 Jerome Alet <alet@librelogiciel.com> |
---|
| 6 | You're welcome to redistribute this software under the |
---|
| 7 | terms of the GNU General Public Licence version 2.0 |
---|
| 8 | or, at your option, any higher version. |
---|
| 9 | |
---|
| 10 | You can read the complete GNU GPL in the file COPYING |
---|
| 11 | which should come along with this software, or visit |
---|
| 12 | the Free Software Foundation's WEB site http://www.fsf.org |
---|
| 13 | |
---|
| 14 | ============================================================ |
---|
| 15 | |
---|
| 16 | PyKota NEWS : |
---|
| 17 | |
---|
[852] | 18 | - 1.01 : |
---|
| 19 | |
---|
| 20 | - The configuration file now accepts an option |
---|
| 21 | to choose the recipient(s) of the email messages : |
---|
| 22 | |
---|
| 23 | - DevNull means no one will receive them. |
---|
| 24 | - User means only the user will receive them. |
---|
| 25 | - Admin means only the admin will receive them. |
---|
| 26 | - Both means the User and the Admin will receive them. |
---|
| 27 | |
---|
[853] | 28 | - The configuration file now uses hard-coded default values |
---|
| 29 | when an option is not set. See sample configuration file |
---|
| 30 | for details. |
---|
| 31 | |
---|
[852] | 32 | - Manual pages are included since 1.00, but I forgot to |
---|
| 33 | add this information to this file. |
---|
| 34 | |
---|
[855] | 35 | - Redistribution terms for the official package have |
---|
| 36 | softened and are now fully GPL compatible : |
---|
| 37 | unrestricted modification is now allowed even for |
---|
| 38 | the version number. |
---|
| 39 | |
---|
[846] | 40 | - 1.00 : |
---|
| 41 | |
---|
| 42 | - edpykota now accepts a --noquota option. This |
---|
| 43 | disable quota checking while still doing page |
---|
| 44 | accounting. This is really useful for people |
---|
| 45 | who don't want to limit their users but want |
---|
| 46 | to know how much pages they print. |
---|
| 47 | |
---|
| 48 | - Some untested scripts were added to retrieve |
---|
| 49 | the life time page counter of non-SNMP printers. |
---|
| 50 | |
---|
| 51 | - Every directory now has a specific README file. |
---|
| 52 | |
---|
[833] | 53 | - 0.99 : |
---|
| 54 | |
---|
| 55 | - Under some circumstances while the user wasn't allowed |
---|
| 56 | to print, he didn't receive any email message. It is |
---|
| 57 | now fixed. |
---|
| 58 | |
---|
| 59 | - When an user wasn't allowed to print, the quota for |
---|
[835] | 60 | the previous user wasn't updated. This is now fixed. |
---|
[833] | 61 | |
---|
[827] | 62 | - 0.98 : |
---|
| 63 | |
---|
| 64 | - Correctly handle the case where the printer is switched off. |
---|
| 65 | |
---|
[828] | 66 | - Small bug wrt syslog fixed. |
---|
| 67 | |
---|
[819] | 68 | - 0.97 : |
---|
| 69 | |
---|
| 70 | - edpykota accepts wildcards on its command line for users/groups too |
---|
| 71 | if the --add option is not set, e.g. : |
---|
| 72 | |
---|
| 73 | $ edpykota --printer lp --softlimit 50 --hardlimit 100 "jer*" |
---|
| 74 | |
---|
[821] | 75 | - If no user name is passed at all, then a default wildcard of "*" |
---|
[819] | 76 | which means apply the command on ALL users for this printer is used. |
---|
| 77 | |
---|
| 78 | - Small bug fixes. |
---|
| 79 | |
---|
[803] | 80 | - 0.96 : |
---|
| 81 | |
---|
[808] | 82 | - Options requester, policy, admin, adminmail and gracedelay can now |
---|
[807] | 83 | be set either globally or per printer. The printer option has |
---|
| 84 | priority if both are defined. |
---|
[803] | 85 | |
---|
[807] | 86 | - More powerful configuration parser. |
---|
| 87 | |
---|
| 88 | - If all options are defined globally, there's no need to |
---|
| 89 | define a section for each printer in the configuration |
---|
| 90 | file anymore. Just define a [global] section and it's ok. |
---|
[803] | 91 | |
---|
[797] | 92 | - 0.95 : |
---|
| 93 | |
---|
[798] | 94 | - External requesters for printers finally added. |
---|
[797] | 95 | |
---|
| 96 | - Full internationalization (english and french are supported) |
---|
| 97 | |
---|
| 98 | - More complete quota usage report |
---|
| 99 | |
---|
| 100 | - CGI script to access to the quota usage report |
---|
| 101 | |
---|
| 102 | - Several bugs fixed. |
---|
| 103 | |
---|
| 104 | |
---|
| 105 | - 0.9 : |
---|
| 106 | |
---|
| 107 | - First public version |
---|