+2006-02-22 Helge Hess <helge.hess@opengroupware.org>
+
+ * NGMime: hardcoded CET/UTC in tzname parsing (v4.5.240)
+
2005-12-13 Helge Hess <helge.hess@opengroupware.org>
* NGMail: some code cleanups / reorgs (v4.5.239)
+2006-02-22 Helge Hess <helge.hess@opengroupware.org>
+
+ * NGMimeRFC822DateHeaderFieldParser.m: added hardcoded detection for
+ CET and UTC in addition to GMT and MET
+
2005-12-16 Marcus Mueller <znek@mulle-kybernetik.com>
* NGMime.xcodeproj: synced with GNUmakefile
}
else if (len == 3) {
if (strcasecmp((char *)s, "GMT") == 0) return gmt;
+ if (strcasecmp((char *)s, "UTC") == 0) return gmt;
if (strcasecmp((char *)s, "MET") == 0) return met;
+ if (strcasecmp((char *)s, "CET") == 0) return met;
}
if (isalpha(*s)) {
MAJOR_VERSION:=4
MINOR_VERSION:=5
-SUBMINOR_VERSION:=239
+SUBMINOR_VERSION:=240
# v4.5.214 requires libNGExtensions v4.5.146
# v4.2.149 requires libNGStreams v4.2.34