libclamav/mbox.h
e3aaff8e
 /*
2023340a
  *  Copyright (C) 2007-2008 Sourcefire, Inc.
  *
  *  Authors: Nigel Horne
e3aaff8e
  *
  *  This program is free software; you can redistribute it and/or modify
2023340a
  *  it under the terms of the GNU General Public License version 2 as
  *  published by the Free Software Foundation.
e3aaff8e
  *
  *  This program is distributed in the hope that it will be useful,
  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  *  GNU General Public License for more details.
  *
  *  You should have received a copy of the GNU General Public License
  *  along with this program; if not, write to the Free Software
48b7b4a7
  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  *  MA 02110-1301, USA.
e3aaff8e
  */
 
 /* See RFC1521 */
 typedef	enum {
 	NOMIME, APPLICATION, AUDIO, IMAGE, MESSAGE, MULTIPART, TEXT, VIDEO, MEXTENSION
 } mime_type;
 
 typedef enum {
86d24ebe
 	NOENCODING, QUOTEDPRINTABLE, BASE64, EIGHTBIT, BINARY, UUENCODE, YENCODE, EEXTENSION, BINHEX
e3aaff8e
 } encoding_type;
 
 /* tk: shut up manager.c warning */
fb49126b
 #include "clamav.h"
e3aaff8e
 
 /* classes supported by this system */
 typedef enum {
abc43816
 	INVALIDCLASS, BLOBCLASS
e3aaff8e
 } object_type;
 
 #ifdef C_BSD
 #define UNIX
 #endif
f0627588
 
d4a7dd82
 #include "table.h"
 #include "blob.h"
 #include "line.h"
 #include "text.h"
 #include "message.h"
 #include "uuencode.h"
 
f0627588
 size_t	strstrip(char *s);	/* remove trailing white space */
0f7f7682
 int	cli_mbox(const char *dir, int desc, cli_ctx *ctx);