Changeset 1089
- Timestamp:
- 07/21/03 08:32:42 (21 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/edpykota
r1078 r1089 23 23 # 24 24 # $Log$ 25 # Revision 1.54 2003/07/21 06:32:42 jalet 26 # Prevents email messages to be sent at modification/creation time for 27 # a user/group quota 28 # 25 29 # Revision 1.53 2003/07/09 06:03:41 jalet 26 30 # Fixed typo when using edpykota --prototype … … 518 522 self.logger.log_message(_("Group %s not found in the PyKota Storage.") % groupname) 519 523 520 getattr(self, "warn%sPQuota" % suffix)(entrypquota) 524 # This line disabled to prevent sending of unwanted email 525 # messages if quota is reached at creation/modification time. 526 # The check will be done at print time anyway. 527 # getattr(self, "warn%sPQuota" % suffix)(entrypquota) 521 528 522 529 if __name__ == "__main__" : -
pykota/trunk/NEWS
r1087 r1089 22 22 PyKota NEWS : 23 23 24 - 1.14alpha7 : 25 26 - edpykota now doesn't check if the user/group is above 27 quota. The check is only done at print time. This 28 prevents the sending of email messages when creating 29 user quotas if quota is already reached at creation 30 time. 31 24 32 - 1.14alpha6 : 25 33 -
pykota/trunk/pykota/version.py
r1087 r1089 21 21 # 22 22 23 __version__ = "1.14alpha 6_unofficial"23 __version__ = "1.14alpha7_unofficial" 24 24 25 25 __doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""