diff src/lib-mail/message-parser.h @ 1534:676995d7c0ca HEAD

IMAP protocol doesn't allow server to send NULs to client. Send ascii #128 instead.
author Timo Sirainen <tss@iki.fi>
date Wed, 04 Jun 2003 18:57:58 +0300
parents 97f8c00b8d4c
children 149ade487f48
line wrap: on
line diff
--- a/src/lib-mail/message-parser.h	Wed Jun 04 17:48:38 2003 +0300
+++ b/src/lib-mail/message-parser.h	Wed Jun 04 18:57:58 2003 +0300
@@ -15,7 +15,10 @@
 	MESSAGE_PART_FLAG_TEXT			= 0x08,
 
 	/* content-transfer-encoding: binary */
-	MESSAGE_PART_FLAG_BINARY		= 0x10
+	MESSAGE_PART_FLAG_BINARY		= 0x10,
+
+	/* message part header or body contains NULs */
+	MESSAGE_PART_FLAG_HAS_NULS		= 0x20
 };
 
 struct message_part {