* MSG4 (and CtdlOutputMsg() as well) now accepts an optional MIME part
[citadel.git] / citadel / msgbase.h
index ab01d27d92d9dcf0674fc117a040340fd5fba6b6..600b684dc3e273bc648aaff262a4ae5a14858cf1 100644 (file)
@@ -117,12 +117,15 @@ int CtdlOutputMsg(long msg_num,           /* message number (local) to fetch */
                int mode,               /* how would you like that message? */
                int headers_only,       /* eschew the message body? */
                int do_proto,           /* do Citadel protocol responses? */
-               int crlf);
+               int crlf,               /* 0=LF, 1=CRLF */
+               char *section           /* output a message/rfc822 section */
+);
 int CtdlOutputPreLoadedMsg(struct CtdlMessage *,
                int mode,               /* how would you like that message? */
                int headers_only,       /* eschew the message body? */
                int do_proto,           /* do Citadel protocol responses? */
-               int crlf);
+               int crlf                /* 0=LF, 1=CRLF */
+);
 int CtdlCopyMsgToRoom(long msgnum, char *dest);
 int CtdlDoIHavePermissionToDeleteMessagesFromThisRoom(void);
 int CtdlDoIHavePermissionToPostInThisRoom(char *errmsgbuf, size_t n);