diff options
| -rw-r--r-- | Mailman/Archiver/HyperArch.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Mailman/Archiver/HyperArch.py b/Mailman/Archiver/HyperArch.py index 18f35c81e..08f5c90ce 100644 --- a/Mailman/Archiver/HyperArch.py +++ b/Mailman/Archiver/HyperArch.py @@ -71,7 +71,7 @@ def url_quote(s): article_text_template="""\ -From %(email)s %(datestr)s +From %(email)s %(fromdate)s Date: %(datestr)s From: %(author)s %(email)s Subject: %(subject)s @@ -161,6 +161,7 @@ quotedpat=re.compile(r'^([>|:]|>)+') # 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 @@ -254,6 +255,7 @@ class Article(pipermail.Article): else: date=self.__last_article_time+1 + self.fromdate = time.ctime(date) self.__last_article_time=date self.date='%011i' % (date,) |
