Changeset 1089

Show
Ignore:
Timestamp:
07/21/03 08:32:42 (21 years ago)
Author:
jalet
Message:

Prevents email messages to be sent at modification/creation time for
a user/group quota

Location:
pykota/trunk
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/edpykota

    r1078 r1089  
    2323# 
    2424# $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# 
    2529# Revision 1.53  2003/07/09 06:03:41  jalet 
    2630# Fixed typo when using edpykota --prototype 
     
    518522                                        self.logger.log_message(_("Group %s not found in the PyKota Storage.") % groupname) 
    519523                                         
    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)     
    521528                      
    522529if __name__ == "__main__" :  
  • pykota/trunk/NEWS

    r1087 r1089  
    2222PyKota NEWS : 
    2323 
     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           
    2432    - 1.14alpha6 : 
    2533     
  • pykota/trunk/pykota/version.py

    r1087 r1089  
    2121# 
    2222 
    23 __version__ = "1.14alpha6_unofficial" 
     23__version__ = "1.14alpha7_unofficial" 
    2424 
    2525__doc__ = """PyKota : a complete Printing Quota Solution for CUPS and LPRng."""