1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
/*
* $Id: mailpart.h 1074 2008-06-04 00:08:43Z hubert@u.washington.edu $
*
* ========================================================================
* Copyright 2013-2020 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 */
|