Changeset 2983
- Timestamp:
- 08/10/06 15:58:29 (18 years ago)
- Location:
- pykota/trunk
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
pykota/trunk/bin/cupspykota
r2973 r2983 1008 1008 server.sendmail(adminmail, destination, msg.as_string()) 1009 1009 except smtplib.SMTPException, answer : 1010 for (k, v) in answer.recipients.items() : 1011 self.printInfo(_("Impossible to send mail to %s, error %s : %s") % (k, v[0], v[1]), "error") 1010 try : 1011 for (k, v) in answer.recipients.items() : 1012 self.printInfo(_("Impossible to send mail to %s, error %s : %s") % (k, v[0], v[1]), "error") 1013 except AttributeError : 1014 self.printInfo(_("Problem when sending mail : %s") % str(answer), "error") 1012 1015 server.quit() 1013 1016 self.logdebug("Feedback sent to user %s." % self.UserName) -
pykota/trunk/NEWS
r2974 r2983 22 22 PyKota NEWS : 23 23 24 - 1.25alpha9 (2006-08-10) : 25 26 - Fixed a problem when an SMTP error occured and the recovery 27 routine failed to handle it correctly. 28 24 29 - 1.25alpha8 (2006-07-11) : 25 30 -
pykota/trunk/pykota/version.py
r2974 r2983 22 22 # 23 23 24 __version__ = "1.25alpha 8_unofficial"24 __version__ = "1.25alpha9_unofficial" 25 25 26 26 __doc__ = "PyKota : a complete Printing Quota Solution for CUPS."