diff options
author | telephil <philippe.mechai@gmail.com> | 2019-09-19 19:10:09 +0200 |
---|---|---|
committer | Dan Cross <crossd@gmail.com> | 2019-09-19 13:10:09 -0400 |
commit | 9389de63d7b0dab99773511f48b2d303e3f957d7 (patch) | |
tree | ab2e5737b9a610779949a4bc85d5b779478f5c29 /src/cmd/upas | |
parent | b9424f640a0493359fd2af7c670c5a4ced334e6b (diff) | |
download | plan9port-9389de63d7b0dab99773511f48b2d303e3f957d7.tar.gz plan9port-9389de63d7b0dab99773511f48b2d303e3f957d7.tar.bz2 plan9port-9389de63d7b0dab99773511f48b2d303e3f957d7.zip |
upas/nfs: fix null date when message is sent to plumber (#263)
When fetching, messages are sent to plumber as soon as the ENVELOPE part is read.
The date field of the message is sent when the INTERNALDATE part is read and
there is no guarantee that this will be read before the ENVELOPE.
This bug can be observed when using faces(1) which will retrieve messages with
a null date and then always display a 'Jan 1' date instead of the correct one.
The fix is to simply send the message to plumber after having read all parts,
thus ensuring the message is complete.
Diffstat (limited to 'src/cmd/upas')
-rw-r--r-- | src/cmd/upas/nfs/imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd/upas/nfs/imap.c b/src/cmd/upas/nfs/imap.c index 8d43fe79..ef76487b 100644 --- a/src/cmd/upas/nfs/imap.c +++ b/src/cmd/upas/nfs/imap.c @@ -1468,6 +1468,7 @@ haveuid: if(isatom(sx->sx[i], msgtab[j].name)) msgtab[j].fn(msg, sx->sx[i], sx->sx[i+1]); } + msgplumb(msg, 0); } static void @@ -1549,7 +1550,6 @@ xmsgenvelope(Msg *msg, Sx *k, Sx *v) USED(k); hdrfree(msg->part[0]->hdr); msg->part[0]->hdr = parseenvelope(v); - msgplumb(msg, 0); } static struct { |