libclamav/mbox.h
e3aaff8e
 /*
c442ca9c
  *  Copyright (C) 2013-2019 Cisco Systems, Inc. and/or its affiliates. All rights reserved.
  *  Copyright (C) 2007-2013 Sourcefire, Inc.
2023340a
  *
  *  Authors: Nigel Horne
6289eda8
  * 
  *  Acknowledgements: Some ideas came from Stephen White <stephen@earth.li>,
  *                    Michael Dankov <misha@btrc.ru>, Gianluigi Tiesi <sherpya@netfarm.it>,
  *                    Everton da Silva Marques, Thomas Lamy <Thomas.Lamy@in-online.net>,
  *                    James Stevens <James@kyzo.com>
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
  */
 
be4bf7f4
 #ifndef __MBOX_H
 #define __MBOX_H
 
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 */
2df29bde
 int	cli_mbox(const char *dir, cli_ctx *ctx);
be4bf7f4
 
 #endif /* __MBOX_H */