Re: [Zope-dev] MailHost.py does not set the Date header, who's bug?

2002-10-11 Thread Lennart Regebro
From: Craeg K Strong [EMAIL PROTECTED] Here is my question. Should ZWiki, my web app, and everybody else's Zope-based web app in the world have to add Date headers? Or maybe MailHost should be smart enough to add a Date header with Date=now if Date is missing from the header...? Indeed,

Re: [Zope-dev] MailHost.py does not set the Date header, who's bug?

2002-10-11 Thread Lennart Regebro
From: Lennart Regebro [EMAIL PROTECTED] Indeed, reading in RFC 2822, the origination date-field is required, which means that the header munging done in MailHost should also look for a date header and add it if it doesn't exist. A simple addition of: if not mo.getheader('Date'):

[Zope-dev] MailHost.py does not set the Date header, who's bug?

2002-10-04 Thread Craeg K Strong
Hello: I have noticed that all of my notifications on page edits in my ZWiki are dated year=1969. This happens because there is no Date header in the email message sent from ZWiki (version 0.10) The MailHost product that comes with Zope 2.5.1 does not add a Date header to mail messages. My