https://bugzilla.novell.com/show_bug.cgi?id=213253 Summary: receiving faxes with capisuite does not sho the date correctly Product: SUSE Linux 10.1 Version: Final Platform: 64bit OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: ISDN AssignedTo: kkeil@novell.com ReportedBy: office@weberhofer.at QAContact: qa@suse.de Because of an small bug, all incoming faxes appear as received on 1st January 1970. This patch should be applied: +++ /usr/lib64/python2.4/site-packages/cs_helpers.py 2006-06-06 11:29:48.020585666 +0200 @@ -165,11 +165,12 @@ # @param text a string containing the text of the first part of the mail # @param attachment name of the file to send as attachment def sendMIMEMail(mail_from,mail_to,mail_subject,mail_type,text,attachment): - import email.MIMEBase,email.MIMEText,email.MIMEAudio,email.Encoders,encodings.ascii,smtplib,popen2,capisuite + import email.MIMEBase,email.MIMEText,email.MIMEAudio,email.Encoders,encodings.ascii,smtplib,popen2,capisuite,datetime msg = email.MIMEBase.MIMEBase("multipart","mixed") msg['Subject']=mail_subject msg['From']=mail_from msg['To']=mail_to + msg['Date']=datetime.datetime.utcnow().strftime("%a, %d %b %Y %H:%M:%S +0000") msg.preamble = 'This is a Multipart-MIME-message. Please use a capable mailer.\n' msg.epilogue = '' # To guarantee the message ends with a newline -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.