From 0bce16eadf2188fbc0758b67953c9d9f24c28dcd Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 7 Jul 2004 08:56:36 +0000 Subject: [PATCH] date defaults to current date in IMAP darcs-hash:20040707085636-5007d-7fdbf36f40c021173af399fefaa91218423f50b6.gz --- src/org/ibex/mail/protocol/IMAP.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/org/ibex/mail/protocol/IMAP.java b/src/org/ibex/mail/protocol/IMAP.java index 8286fa8..a808c6b 100644 --- a/src/org/ibex/mail/protocol/IMAP.java +++ b/src/org/ibex/mail/protocol/IMAP.java @@ -298,7 +298,7 @@ public class IMAP { case APPEND: { String m = token().astring(); int flags = 0; - Date arrival = null; + Date arrival = new Date(); Parser.Token t = token(); if (t.type == t.LIST) { flags = t.flags(); t = token(); } if (t.type != t.QUOTED) { arrival = t.datetime(); t = token(); } -- 1.7.10.4