imap-envelope.h revision c442a58347a55e069b64101905e0404258ca8211
#ifndef __IMAP_ENVELOPE_H
#define __IMAP_ENVELOPE_H
enum imap_envelope_field {
/* NOTE: in the same order as listed in ENVELOPE */
IMAP_ENVELOPE_DATE = 0,
};
enum imap_envelope_result_type {
};
struct message_part_envelope_data;
/* Update envelope data based from given header field */
struct message_part_envelope_data **data,
/* Write envelope to given string */
/* Parse envelope and store specified field to result. NIL is stored as NULL.
Returns TRUE if successful. */
const char **result);
#endif