* Create help for explaining how encrypted password file support
[alpine.git] / pith / atttype.h
blob081aa7a94033e3814b0b899c49f3763ed6b15e4e
1 /*
2 * $Id: atttype.h 761 2007-10-23 22:35:18Z hubert@u.washington.edu $
4 * ========================================================================
5 * Copyright 2006 University of Washington
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * ========================================================================
16 #ifndef PITH_ATTTYPE_INCLUDED
17 #define PITH_ATTTYPE_INCLUDED
20 typedef struct attachment {
21 char *description;
22 BODY *body;
23 unsigned test_deferred:1;
24 unsigned can_display:4;
25 unsigned shown:1;
26 unsigned suppress_editorial:1;
27 char *number;
28 char size[25];
29 } ATTACH_S;
33 * struct to help peruse a, possibly fragmented ala RFC 2231, parm list
35 typedef struct parmlist {
36 PARAMETER *list,
37 *seen;
38 char attrib[32],
39 *value;
40 } PARMLIST_S;
43 /* exported protoypes */
46 #endif /* PITH_ATTTYPE_INCLUDED */