Show
Ignore:
Timestamp:
08/10/06 15:58:29 (18 years ago)
Author:
jerome
Message:

Fixed a problem in the handling of SMTP errors.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • pykota/trunk/bin/cupspykota

    r2973 r2983  
    10081008                        server.sendmail(adminmail, destination, msg.as_string()) 
    10091009                    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") 
    10121015                    server.quit() 
    10131016            self.logdebug("Feedback sent to user %s." % self.UserName)