[dovecot-cvs] dovecot/src/lib-mail message-parser.h,1.33,1.34

cras at dovecot.org cras at dovecot.org
Sat Sep 16 16:47:50 EEST 2006


Update of /var/lib/cvs/dovecot/src/lib-mail
In directory talvi:/tmp/cvs-serv13828

Modified Files:
	message-parser.h 
Log Message:
Removed unused flag and added comment.



Index: message-parser.h
===================================================================
RCS file: /var/lib/cvs/dovecot/src/lib-mail/message-parser.h,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -d -r1.33 -r1.34
--- message-parser.h	9 May 2006 11:55:04 -0000	1.33
+++ message-parser.h	16 Sep 2006 13:47:48 -0000	1.34
@@ -4,6 +4,8 @@
 #include "message-header-parser.h"
 #include "message-size.h"
 
+/* Note that these flags are used directly by message-parser-serialize, so
+   existing flags can't be changed without breaking backwards compatibility */
 enum message_part_flags {
 	MESSAGE_PART_FLAG_MULTIPART		= 0x01,
 	MESSAGE_PART_FLAG_MULTIPART_DIGEST	= 0x02,
@@ -12,8 +14,7 @@
 	/* content-type: text/... */
 	MESSAGE_PART_FLAG_TEXT			= 0x08,
 
-	/* content-transfer-encoding: binary */
-	MESSAGE_PART_FLAG_BINARY		= 0x10,
+	MESSAGE_PART_FLAG_UNUSED		= 0x10,
 
 	/* message part header or body contains NULs */
 	MESSAGE_PART_FLAG_HAS_NULS		= 0x20,



More information about the dovecot-cvs mailing list