/* * $Id: mailpart.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $ * * ======================================================================== * Copyright 2013-2021 Eduardo Chappa * Copyright 2006-2008 University of Washington * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * ======================================================================== */ #ifndef PITH_MAILPART_INCLUDED #define PITH_MAILPART_INCLUDED #include "../pith/atttype.h" #include "../pith/state.h" #define MIME_MSG(t,s) ((t) == TYPEMESSAGE && (s) && !strucmp((s),"rfc822")) #define MIME_DGST(t,s) ((t) == TYPEMULTIPART && (s) && !strucmp((s),"digest")) /* Is this a message attachment? */ #define MIME_VCARD(t,s) ((((t) == TYPETEXT || (t) == TYPEAPPLICATION) \ && (s) && !strucmp((s),"DIRECTORY")) \ || ((t) == TYPETEXT \ && (s) && !strucmp((s),"X-VCARD"))) /* Is this a VCalendar type? */ #define MIME_VCALENDAR(t,s) ((t) == TYPETEXT && (s) && !strucmp((s),"CALENDAR")) /* Is this a text/html attachment? */ #define TEXT_HTML(t,s) ((t) == TYPETEXT && (s) && !strucmp((s),"HTML")) /* Is this a multipart signed? */ #define MIME_MULT_SIGNED(t,s) ((t) == TYPEMULTIPART && (s) && !strucmp((s),"signed")) #define MIME_MSG_A(a) MIME_MSG((a)->body->type, (a)->body->subtype) /* Is this a digest attachment? */ #define MIME_DGST_A(a) MIME_DGST((a)->body->type, (a)->body->subtype) /* Is this a vCard attachment? */ #define MIME_VCARD_A(a) MIME_VCARD((a)->body->type, (a)->body->subtype) /* Is this a VCalendar attachment? */ #define MIME_VCALENDAR_A(a) MIME_VCALENDAR((a)->body->type, (a)->body->subtype) /* exported prototypes */ #endif /* PITH_MAILPART_INCLUDED */