summaryrefslogtreecommitdiffstats
path: root/src/mime.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mime.h')
-rw-r--r--src/mime.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/src/mime.h b/src/mime.h
new file mode 100644
index 0000000..5fd4392
--- /dev/null
+++ b/src/mime.h
@@ -0,0 +1,44 @@
+/*************************************************
+* Exim - an Internet mail transport agent *
+*************************************************/
+
+/* Copyright (c) Tom Kistner <tom@duncanthrax.net> 2004, 2015
+ * License: GPL
+ * Copyright (c) The Exim Maintainers 2016
+ */
+
+#ifdef WITH_CONTENT_SCAN
+
+#define MIME_MAX_HEADER_SIZE 8192
+#define MIME_MAX_LINE_LENGTH 32768
+
+#define MBC_ATTACHMENT 0
+#define MBC_COVERLETTER_ONESHOT 1
+#define MBC_COVERLETTER_ALL 2
+
+struct mime_boundary_context
+{
+ struct mime_boundary_context *parent;
+ unsigned char *boundary;
+ int context;
+};
+
+typedef struct mime_header {
+ uschar * name;
+ int namelen;
+ uschar ** value;
+} mime_header;
+
+
+typedef struct mime_parameter {
+ uschar * name;
+ int namelen;
+ uschar ** value;
+} mime_parameter;
+
+/* MIME Anomaly list */
+#define MIME_ANOMALY_BROKEN_BASE64 1
+#define MIME_ANOMALY_BROKEN_QP 0
+
+
+#endif