Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Current »

Reads and structures a message previously retrieved from a POP3 server.

Files

pop3-c.h/pop3-c.c

Prototype

Arguments

msg_buf

Buffer containing a message received with POP3c_MsgRetrieve().

buf_size

Size of msg_buf.

msg

Pointer to POP3c_MSG structure being filled by this function.

perr

Pointer to a variable that will hold the return error code from this function:

Returned Values

None.

Required Configuration

None.

Notes / Warnings

  • From RFC #2822 (Internet Message Format), Section ‘Lexical Analysis of Messages : General Description’, “The body is simply a sequence of characters that follows the header and is separated from the header by an empty line (i.e., a line with nothing preceding the CRLF)”. Hence, GetLine() will return a length of 2 when it encounters that delimitation.
  • Characters <CRLF> are not copied into the various structure’s header fields. Instead, a ‘\0’ character is appended.
  • The leading WSP (after the comma) is (are) not copied into the various structure’s header fields.
  • If the character ‘\0’ is found in the msg_buf before the end of the header, it means that buffer, and hence the message, is incomplete. However, there is no way to know if the message body was complete. One should always check the return value of POP3c_MsgRetrieve() for confirmation.

Example Usage

See Sample Application.

  • No labels