Go to the source code of this file.
Classes | |
struct | upload_status |
Defines | |
#define | CC "<info@example.org>" |
#define | FROM "<sender@example.org>" |
#define | TO "<addressee@example.net>" |
Functions | |
int | main (void) |
static size_t | payload_source (void *ptr, size_t size, size_t nmemb, void *userp) |
Variables | |
static const char * | payload_text [] |
#define CC "<info@example.org>" |
Definition at line 40 of file imap-append.c.
#define FROM "<sender@example.org>" |
Definition at line 38 of file imap-append.c.
#define TO "<addressee@example.net>" |
Definition at line 39 of file imap-append.c.
int main | ( | void | ) |
Definition at line 84 of file imap-append.c.
static size_t payload_source | ( | void * | ptr, |
size_t | size, | ||
size_t | nmemb, | ||
void * | userp | ||
) | [static] |
Definition at line 62 of file imap-append.c.
const char* payload_text[] [static] |
{ "Date: Mon, 29 Nov 2010 21:54:29 +1100\r\n", "To: " TO "\r\n", "From: " FROM "(Example User)\r\n", "Cc: " CC "(Another example User)\r\n", "Message-ID: " "<dcd7cb36-11db-487a-9f3a-e652a9458efd@rfcpedant.example.org>\r\n", "Subject: IMAP example message\r\n", "\r\n", "The body of the message starts here.\r\n", "\r\n", "It could be a lot of lines, could be MIME encoded, whatever.\r\n", "Check RFC5322.\r\n", NULL }
Definition at line 42 of file imap-append.c.