From 63a7ad57d3d2cf508f3c474e59302ab36f46489f Mon Sep 17 00:00:00 2001 From: Chris Hanson Date: Tue, 23 May 2000 21:39:58 +0000 Subject: [PATCH] Fix bug: time stamp for APPEND might be #F. --- v7/src/imail/imail-imap.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/v7/src/imail/imail-imap.scm b/v7/src/imail/imail-imap.scm index c8ee91e16..52a315d8d 100644 --- a/v7/src/imail/imail-imap.scm +++ b/v7/src/imail/imail-imap.scm @@ -1,6 +1,6 @@ ;;; -*-Scheme-*- ;;; -;;; $Id: imail-imap.scm,v 1.87 2000/05/23 20:19:04 cph Exp $ +;;; $Id: imail-imap.scm,v 1.88 2000/05/23 21:39:58 cph Exp $ ;;; ;;; Copyright (c) 1999-2000 Massachusetts Institute of Technology ;;; @@ -978,7 +978,7 @@ (define (imap:command:append connection mailbox flags time text) (imap:command:no-response connection 'APPEND mailbox (and (pair? flags) flags) - (imap:universal-time->date-time time) + (and time (imap:universal-time->date-time time)) (cons 'LITERAL text))) (define (imap:command:search connection . key-plist) -- 2.25.1