We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43c9a21 commit 6709c6dCopy full SHA for 6709c6d
Changelog
@@ -4,6 +4,11 @@ Version Changes for Hypermail
4
HYPERMAIL VERSION 2.4.0:
5
============================
6
7
+2019-12-20 Jose Kahan
8
+ * src/getdate.y
9
+ A message's sent or received date with a specified TZ but without any
10
+ seconds value was using the local date seconds value instead of 00.
11
+
12
2019-12-19 Jose Kahan
13
* src/parse.c
14
parsemail(): a Content-Transfer-Encoding header with a missing value
src/getdate.y
@@ -233,6 +233,7 @@ time : tUNUMBER tMERIDIAN {
233
| tUNUMBER ':' tUNUMBER tSNUMBER {
234
yyHour = $1;
235
yyMinutes = $3;
236
+ yySeconds = 0;
237
yyMeridian = MER24;
238
yyHaveZone++;
239
yyTimezone = ($4 < 0
0 commit comments