NeoMutt
2023-03-22-27-g3cb248
Teaching an old dog new tricks
DOXYGEN
message.h
Go to the documentation of this file.
1
24
#ifndef MUTT_IMAP_MESSAGE_H
25
#define MUTT_IMAP_MESSAGE_H
26
27
#include <time.h>
28
32
struct
ImapHeader
33
{
34
struct
ImapEmailData
*
edata
;
35
36
time_t
received
;
37
long
content_length
;
38
};
39
40
#endif
/* MUTT_IMAP_MESSAGE_H */
ImapEmailData
IMAP-specific Email data -.
Definition:
edata.h:34
ImapHeader
IMAP-specific header.
Definition:
message.h:33
ImapHeader::received
time_t received
Definition:
message.h:36
ImapHeader::edata
struct ImapEmailData * edata
Definition:
message.h:34
ImapHeader::content_length
long content_length
Definition:
message.h:37