Index: Mailman/Archiver/HyperArch.py =================================================================== RCS file: /projects/cvsroot/mailman/Mailman/Archiver/HyperArch.py,v retrieving revision 1.16 diff -u -r1.16 HyperArch.py --- HyperArch.py 2000/03/21 06:25:10 1.16 +++ HyperArch.py 2000/03/27 19:08:04 @@ -64,7 +64,7 @@ article_text_template="""\ -From %(email)s %(datestr)s +From %(email)s %(fromdate)s Date: %(datestr)s From: %(author)s %(email)s Subject: %(subject)s @@ -154,6 +154,7 @@ # subject : Subject # datestr : The posting date, in human-readable format # date : The posting date, in purely numeric format +# fromdate : The posting date, in 'unixfrom' format # headers : Any other headers of interest # author : The author's name (and possibly organization) # email : The author's e-mail address @@ -242,7 +243,7 @@ date=time.mktime(date)-tzoffset else: date=self.__last_article_time+1 - + self.fromdate = time.ctime(date) self.__last_article_time=date self.date='%011i' % (date,)