From 20e9d8cc3be1a2708ded2f027c41c797a9c75e4f Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Thu, 2 Apr 2009 16:46:09 +0000 Subject: [PATCH] * DLAT response was missing its MIME metadata. Fixed. --- citadel/msgbase.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/citadel/msgbase.c b/citadel/msgbase.c index 60648431e..d290e192f 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -1019,7 +1019,12 @@ void mime_spew_section(char *name, char *filename, char *partnum, char *disp, || (!IsEmptyStr(cbid) && (!strcasecmp(CC->download_desired_section, cbid))) ) { *found_it = 1; - cprintf("%d %d\n", BINARY_FOLLOWS, (int)length); + cprintf("%d %d|-1|%s|%s\n", + BINARY_FOLLOWS, + (int)length, + filename, + cbtype + ); client_write(content, length); } } -- 2.39.2