--- /dev/null
+
+
+add_library ( mime STATIC
+ file_mime_config.cc
+ file_mime_config.h
+ file_mime_decode.h
+ file_mime_decode.cc
+ file_mime_log.h
+ file_mime_log.cc
+ file_mime_paf.h
+ file_mime_paf.cc
+ file_mime_process.h
+ file_mime_process.cc
+ sf_email_attach_decode.cc
+ sf_email_attach_decode.h
+ sf_base64decode.cc
+ sf_base64decode.h
+)
+
+target_link_libraries(mime file_api)
+
--- /dev/null
+
+noinst_LIBRARIES = libmime.a
+
+libmime_a_SOURCES = \
+file_mime_decode.h file_mime_decode.cc \
+file_mime_log.h file_mime_log.cc \
+file_mime_paf.h file_mime_paf.cc \
+file_mime_process.h file_mime_process.cc \
+file_mime_config.cc file_mime_config.h \
+sf_base64decode.cc sf_base64decode.h \
+sf_email_attach_decode.cc sf_email_attach_decode.h
\ No newline at end of file
--- /dev/null
+This directory contains all the mime processing related classes and APIs
+
+* MIME processing: provides the common MIME header and MIME body processing for
+service inpsectors such as HTTP, SMTP, POP, and IMAP. If configured, it decodes
+file data that are encoded in Base64, UU-encoding, QP-encoding, and Bit-encoding.
+