#ifndef __MBOX_H__ #define __MBOX_H__ 1 /* elmo - ELectronic Mail Operator Copyright (C) 2002, 2003, 2004 rzyjontko This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; version 2. 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 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. ---------------------------------------------------------------------- */ /***************************************************************************** * INTERFACE REQUIRED HEADERS ****************************************************************************/ #include "mail.h" #include "mime.h" /***************************************************************************** * INTERFACE DEFINITIONS / ENUMERATIONS / SIMPLE TYPEDEFS ****************************************************************************/ /**************************************************************************** * INTERFACE CLASS PROTOTYPES / EXTERNAL CLASS REFERENCES ****************************************************************************/ /**************************************************************************** * INTERFACE STRUCTURES / UTILITY CLASSES ****************************************************************************/ /**************************************************************************** * INTERFACE DATA DECLARATIONS ****************************************************************************/ /**************************************************************************** * INTERFACE FUNCTION PROTOTYPES ****************************************************************************/ extern int mbox_may_be_valid (const char *fname); extern mail_array_t *mbox_read_file (const char *name); extern int mbox_mail_header (mail_t *mail, char **place, const char *fname); extern int mbox_mail_body (mail_t *mail, char **place, mime_t *mime, const char *fname); extern void mbox_free_resources (void); extern int mbox_mail_size (mail_t *mail); extern char *mbox_fetch_single (const char *mbox, mail_t *mail); extern int mbox_box_mail_count (const char *box, int *unread); /**************************************************************************** * INTERFACE OBJECT CLASS DEFINITIONS ****************************************************************************/ /**************************************************************************** * INTERFACE TRAILING HEADERS ****************************************************************************/ /**************************************************************************** * * END HEADER mbox.h * ****************************************************************************/ #endif