CVS: tmda UPGRADE,1.91,1.92
"Jason R. Mastaler" <[email protected]>
| Newsgroups | gmane.mail.spam.tmda.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/tmda/tmda In directory sc8-pr-cvs1:/tmp/cvs-serv17081 Modified Files: UPGRADE Log Message: The Unix-style date strings in TMDA have been replaced by RFC 2822 compatible strings in all areas of the code for easier parsing. The latter is more standard and more easier processed using any RFC 2822 library (e.g, Python's email.Utils.parsedate()). It's also more descriptive since it shows the UTC offset. The previous format didn't distinguish between two timezones with the same name. So for example Sydney, Australia and New York City were undistinguished since they are both "EST", even though they are 16 hours apart. Very misleading. - Before: NYC: Sun Jan 11 02:32:08 EST 2004 SYD: Sun Jan 11 18:32:08 EST 2004 - After: NYC: Sun, 11 Jan 2004 02:32:08 -0500 (EST) SYD: Sun, 11 Jan 2004 18:32:08 +1100 (EST) Index: UPGRADE =================================================================== RCS file: /cvsroot/tmda/tmda/UPGRADE,v retrieving revision 1.91 retrieving revision 1.92 diff -u -r1.91 -r1.92 --- UPGRADE 9 Jan 2004 19:36:26 -0000 1.91 +++ UPGRADE 11 Jan 2004 07:36:42 -0000 1.92 @@ -7,6 +7,14 @@ * The TIMEOUT configuration variable has been renamed DATED_TIMEOUT. +* The Unix-style date strings in TMDA have been replaced by RFC 2822 + compatible strings in all areas of the code for easier parsing. + You can safely ignore this unless you process these strings with + custom scripts. + + Before: Mon Jan 19 00:13:01 MST 2004 + After: Mon, 19 Jan 2004 00:13:01 -0700 (MST) + ====================================================================== If you are upgrading from a release of TMDA < 1.1.0: